Fast kernel -- ALGLIB routine -- 19.01.2010 Bochkanov Sergey *************************************************************************/
| 29 | Bochkanov Sergey |
| 30 | *************************************************************************/ |
| 31 | bool cmatrixrank1f(int m, |
| 32 | int n, |
| 33 | ap::complex_2d_array& a, |
| 34 | int ia, |
| 35 | int ja, |
| 36 | ap::complex_1d_array& u, |
| 37 | int iu, |
| 38 | ap::complex_1d_array& v, |
| 39 | int iv) |
| 40 | { |
| 41 | #ifndef ALGLIB_INTERCEPTS_ABLAS |
| 42 | bool result; |
| 43 | |
| 44 | result = false; |
| 45 | return result; |
| 46 | #else |
| 47 | return ialglib::_i_cmatrixrank1f(m, n, a, ia, ja, u, iu, v, iv); |
| 48 | #endif |
| 49 | } |
| 50 | |
| 51 | |
| 52 | /************************************************************************* |