Azzera filtri
Azzera filtri

How to find minimum element from an array.

2 visualizzazioni (ultimi 30 giorni)
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
priyanka
priyanka il 3 Nov 2014
Index exceeds matrix dimensions.
Error in PrimsAlgo (line 298) min( ArrCost ) This is the error.

Accedi per commentare.

Risposta accettata

Azzi Abdelmalek
Azzi Abdelmalek il 3 Nov 2014
a=[132 784 94 35 567]
b=min(a)
  5 Commenti
James Tursa
James Tursa il 3 Nov 2014
What do you get when you type in
which min
priyanka
priyanka il 3 Nov 2014
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