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