1use crate::symbolic::types::symbol::Size; 2 3use nalgebra::Scalar; 4 5pub struct Matrix<T: Scalar> { 6 name: String, 7 m: Size, 8 n: Size, 9 _type: T, 10 location: String, 11}