public float RowMean(int row) { if (row >= GetRows()) { Debug.Log("Accessing out of bounds."); return(0f); } return(Eigen.RowMean(Ptr, row)); }