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