find the minimum value

2 views (last 30 days)
Internazionale
Internazionale on 10 Feb 2013
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 ?

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 10 Feb 2013
Edited: Azzi Abdelmalek on 10 Feb 2013
A=magic(5) % Example
out=min(A(:))
% No, min function don't allow just inetger
help min
  7 Comments
Internazionale
Internazionale on 11 Feb 2013
how about to find minimum value not only in mintemp (:,:,1,1) but also continue until (:,:,8,8) or the whole e. so, i get 64 minimum value.
Azzi Abdelmalek
Azzi Abdelmalek on 11 Feb 2013
Please, post correctly your question. Post a sample of your data, then ask clearly what you want.

Sign in to comment.

More Answers (0)

Categories

Find more on Tables in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!