Filter löschen
Filter löschen

Matlab 2012: bug in 2012 implementation of Max() !???

4 Ansichten (letzte 30 Tage)
Amir
Amir am 13 Mär. 2012
Try to to this:
max([1 2 5 2])
it then says:
Index exceeds matrix dimensions.
however for min([1 2 5 2]) or even mean([1 2 5 2]) there is no problem and they work fine.

Antworten (1)

Sean de Wolski
Sean de Wolski am 13 Mär. 2012
This is because you have defined a variable by the name max:
whos max
and to fix it:
clear max
and then rename your variable something else (maybe the_max)
  1 Kommentar
Jan
Jan am 13 Mär. 2012
An evergreen.
Try this:
clear('max')
max(1:5)
max = rand(1, 5);
max(1:5)

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu MATLAB finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by