How to find minimum element from an array.

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 Commenti

Adam
Adam il 3 Nov 2014
Modificato: Adam il 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
Index exceeds matrix dimensions.
Error in PrimsAlgo (line 298) min( ArrCost ) This is the error.

Accedi per commentare.

 Risposta accettata

a=[132 784 94 35 567]
b=min(a)

5 Commenti

Priyanka commented
Index exceeds matrix dimensions.
Error in PrimsAlgo (line 298) min( ArrCost ) This is the error.
Check if min is not used as a variable in your code
No min is not used as variable. Still same problem.
What do you get when you type in
which min
Its working. Thank you

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by