64 {
65 float *A;
70
74
77 A = (
float* )malloc( (*n)*
LDA*
sizeof( float ) );
78 for( i=0; i<*n; i++ )
79 for( j=0; j<*n; j++ )
80 A[
LDA*i+j ]=a[ (*lda)*j+i ];
82 free(A);
83 }
86 else {
88 }
89}
void cblas_strmv(CBLAS_LAYOUT layout, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, const CBLAS_INT N, const float *A, const CBLAS_INT lda, float *X, const CBLAS_INT incX)
void get_diag_type(char *type, CBLAS_DIAG *diag)
void get_uplo_type(char *type, CBLAS_UPLO *uplo)
void get_transpose_type(char *type, CBLAS_TRANSPOSE *trans)