821822823824825826827828829830831
Complex d = new Complex(); for( Complex o : statMemory ){ d = d.add( o ); } for( Complex o : statMemoryNeg ){ d = d.subtract( o ); } if( statSize() > 0 ){ mean.setValue( d.divide( new Complex( statSize(), 0 ) ) ); } else { mean.setError( true );