find the minimum value
8 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Azzi Abdelmalek
2013 年 2 月 10 日
編集済み: Azzi Abdelmalek
2013 年 2 月 10 日
A=magic(5) % Example
out=min(A(:))
% No, min function don't allow just inetger
help min
7 件のコメント
Azzi Abdelmalek
2013 年 2 月 11 日
Please, post correctly your question. Post a sample of your data, then ask clearly what you want.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!