pub type RMatrix4D<T> = RArray<T, [usize; 4]>;
Aliased Type§
struct RMatrix4D<T> {
robj: Robj,
dim: [usize; 4],
_data: PhantomData<T>,
}
Fields§
§robj: Robj
Owning Robj (probably should be a Pin).
dim: [usize; 4]
Dimensions of the array.
_data: PhantomData<T>
Implementations
Source§impl<T, D> RArray<T, D>where
Robj: for<'a> AsTypedSlice<'a, T>,
impl<T, D> RArray<T, D>where
Robj: for<'a> AsTypedSlice<'a, T>,
Source§impl<T, D> RArray<T, D>
impl<T, D> RArray<T, D>
pub fn get_dimnames(&self) -> List
Sourcepub fn set_names(&mut self, names: Strings)
pub fn set_names(&mut self, names: Strings)
Set the names of the elements of an array.
Equivalent to names<-
in R
Sourcepub fn set_dimnames(&mut self, dimnames: List)
pub fn set_dimnames(&mut self, dimnames: List)
Set the dimension names of an array.
For RMatrix
a list of length 2 is required, as that would entail
column-names and row-names. If you only wish to set one, but not the other,
then the unset element must be R NULL
Equivalent to dimnames<-
in R