so where are all of the blas, lapack libs?
i need cblas_zgetrf and clbas_zgetrs
the documentation here
developer.apple.com/library/mac/documentation/Accelerate/Reference/BLAS_Ref/index.html#//apple_ref/doc/uid/TP30000414-SW126
they should be here....???? but they are not
cblas_zgemv(_:_:_:_:_:_:_:_:_:_:_:_:)
cblas_zgerc(_:_:_:_:_:_:_:_:_:_:)
cblas_zgeru(_:_:_:_:_:_:_:_:_:_:)
cblas_zhbmv(_:_:_:_:_:_:_:_:_:_:_:_:)
cblas_zhemm(_:_:_:_:_:_:_:_:_:_:_:_:_:)
cblas_zhemv(_:_:_:_:_:_:_:_:_:_:_:)
but in the header clapack.h it has this but it's not in the documentation????
int zgetrf_(__CLPK_integer *__m, __CLPK_integer *__n, __CLPK_doublecomplex *__a,
__CLPK_integer *__lda, __CLPK_integer *__ipiv,
__CLPK_integer *__info) __OSX_AVAILABLE_STARTING(__MAC_10_2,
__IPHONE_4_0);
int zgetrs_(char *__trans, __CLPK_integer *__n, __CLPK_integer *__nrhs,
__CLPK_doublecomplex *__a, __CLPK_integer *__lda,
__CLPK_integer *__ipiv, __CLPK_doublecomplex *__b,
__CLPK_integer *__ldb,
__CLPK_integer *__info) __OSX_AVAILABLE_STARTING(__MAC_10_2,
__IPHONE_4_0);