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