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