// Returns standard errors of the rows
public double[] rowStandardErrors(){
double[] standardErrors = new double[this.numberOfRows];
for(int i=0; i<this.numberOfRows; i++){
Stat st = new Stat(this.matrix[i]);
standardErrors[i] = st.standardError();
}
return standardErrors;
}