}
return d;
}
public StDev statSampleStDev(){
StDev stDev = new StDev();
try {
Complex d = statSumSquares();
//if( d < 0 || statSize() < 2 ){
if( statSize() < 2 ){
stDev.setError( true );
return stDev;
} else {
stDev.setValue( d.divide( new Complex( statSize() - 1, 0 ) ).sqrt() );
return stDev;
}
} catch( Exception e ){
stDev.setError( true );
return stDev;
}
}