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