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