| 48 | /// ``` |
| 49 | #[derive(Debug, Clone, Default)] |
| 50 | pub struct ComplexMatrix { |
| 51 | pub(crate) data: Vec<C64>, |
| 52 | pub(crate) row: usize, |
| 53 | pub(crate) col: usize, |
| 54 | pub(crate) shape: Shape, |
| 55 | } |
| 56 | |
| 57 | impl ComplexMatrix { |
| 58 | /// Number of rows |
nothing calls this directly
no outgoing calls
no test coverage detected