How to find minimum element from an array.

1 view (last 30 days)
function to find Minimum element of an element. Ex: There is an array ArrCost , having elements 132 784 94 35 567. I have to find minimum number from it, but Min(ArrCost) is not Working. Is there any another function.
  2 Comments
Adam
Adam on 3 Nov 2014
Edited: Adam on 3 Nov 2014
What do you mean by "not working"?
min
is obviously the function that does what you say so you need to be more specific as to what is not working about it.
>> ArrCost = [132 784 94 35 567]
ArrCost =
132 784 94 35 567
>> min( ArrCost )
ans =
35
priyanka
priyanka on 3 Nov 2014
Index exceeds matrix dimensions.
Error in PrimsAlgo (line 298) min( ArrCost ) This is the error.

Sign in to comment.

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 3 Nov 2014
a=[132 784 94 35 567]
b=min(a)
  5 Comments

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!