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