Removed a few dsp files and changed saving/loading eoPops a bit.
This commit is contained in:
parent
33803be4cd
commit
4f1bcfa292
33 changed files with 59 additions and 2767 deletions
|
|
@ -51,11 +51,11 @@ class eoEsFull : public eoFixedLength<Fit, double>
|
|||
eoFixedLength<Fit,double>::printOn(os);
|
||||
|
||||
os << ' ';
|
||||
std::copy(stdevs.begin(), stdevs.end(), std::ostream_iterator<double>(os));
|
||||
std::copy(stdevs.begin(), stdevs.end(), std::ostream_iterator<double>(os, " "));
|
||||
|
||||
os << ' ';
|
||||
|
||||
std::copy(correlations.begin(), correlations.end(), std::ostream_iterator<double>(os));
|
||||
std::copy(correlations.begin(), correlations.end(), std::ostream_iterator<double>(os, " "));
|
||||
|
||||
os << ' ';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ class eoEsStdev : public eoFixedLength<Fit, double>
|
|||
eoFixedLength<Fit,double>::printOn(os);
|
||||
|
||||
os << ' ';
|
||||
std::copy(stdevs.begin(), stdevs.end(), std::ostream_iterator<double>(os));
|
||||
std::copy(stdevs.begin(), stdevs.end(), std::ostream_iterator<double>(os, " "));
|
||||
|
||||
os << ' ';
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue