You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let my_dmatrix:DMatrix<f64> = ...;let x:DVectorView<f64> = my_dmatrix.column(0);// there is the DVectorView alias, happy dayslet x:RowDVectorView<f64> = my_dmatrix.row(0);// but RowDVectorView doesn't exist// ^^^^^^^^^^^^^^
Seems like a type called RowDVectorView might be missing for consistency?
Consider this:
Seems like a type called
RowDVectorView
might be missing for consistency?The text was updated successfully, but these errors were encountered: