(&self, rhs: &Matrix<f64>)
| 34 | } |
| 35 | |
| 36 | fn sub(&self, rhs: &Matrix<f64>) -> Matrix<f64> { |
| 37 | let mut x = self.clone(); |
| 38 | x.isub(rhs); |
| 39 | x |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | // ---------------------------------------------------------------------------- |
no outgoing calls