| 98 | } |
| 99 | |
| 100 | array inverse(const array &in, const matProp options) { |
| 101 | af_array out; |
| 102 | AF_THROW(af_inverse(&out, in.get(), options)); |
| 103 | return array(out); |
| 104 | } |
| 105 | |
| 106 | array pinverse(const array &in, const double tol, const matProp options) { |
| 107 | af_array out; |
nothing calls this directly
no test coverage detected