(A: &ComplexMatrix, b: &ComplexMatrix, sk: SolveKind)
| 2206 | |
| 2207 | #[allow(non_snake_case)] |
| 2208 | pub fn csolve(A: &ComplexMatrix, b: &ComplexMatrix, sk: SolveKind) -> ComplexMatrix { |
| 2209 | A.solve_mat(b, sk) |
| 2210 | } |
| 2211 | |
| 2212 | impl MutMatrix for ComplexMatrix { |
| 2213 | type Scalar = C64; |