Go to the source code of this file.
◆ dataLoad()
Definition at line 143 of file Standardizer.C.
144{
145 unsigned int n;
147 std::vector<Real> mean(n);
148 std::vector<Real> stdev(n);
149 for (unsigned int ii = 0; ii < n; ++ii)
150 dataLoad(stream, mean[ii], context);
151 for (unsigned int ii = 0; ii < n; ++ii)
152 dataLoad(stream, stdev[ii], context);
153 standardizer.
set(mean, stdev);
154}
void dataLoad(std::istream &stream, StochasticTools::Standardizer &standardizer, void *context)
Referenced by dataLoad().
◆ dataStore()