C libraries-LAPACK MEPL EIGEN
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I am finding it difficult to learn about C libraries-LAPACK MEPL EIGEN. Please help me find good references.
11 Commenti
Walter Roberson
il 16 Gen 2018
I did not notice at the time of the original post that you were not asking for the maximum over the entire matrix. I later updated with "there are no LAPACK or BLAS calls for scalar multiplication or division on a per-column basis."
Risposta accettata
Jan
il 29 Dic 2017
Is there a LAPACK or CBLAS function that can be used to normalise
an m by n matrix ?
A=abs(B/max(B)); %B is m by n matrix
No, there is no LABACK or CBLAS function for this. Do you mean
A = abs(B / max(B(:))) % The (:) is essential
% Or
A = abs(B ./ max(B)) % The ./ is essential
Is there a LAPACK or CBLAS function that can be used to
find log10 of an m by n matrix?
A = 10*log10(B);
No, there is no LAPACK or BLAS function for this. The shown code is efficient already.
8 Commenti
Walter Roberson
il 10 Gen 2018
I do not see any routines for element by element multiplication. http://www.icl.utk.edu/~mgates3/docs/lapack.html
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Linear Algebra in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!