find the minimum value
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
i have a matrix A with double class type data. i have to find the minimum value of matrix, the problem is the min function on matlab require integer data. is there matlab function to find minimum value on double class type data or function conversion between double to integer so min function can use ?
0 Commenti
Risposta accettata
Azzi Abdelmalek
il 10 Feb 2013
Modificato: Azzi Abdelmalek
il 10 Feb 2013
A=magic(5) % Example
out=min(A(:))
% No, min function don't allow just inetger
help min
7 Commenti
Azzi Abdelmalek
il 11 Feb 2013
Please, post correctly your question. Post a sample of your data, then ask clearly what you want.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Logical 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!