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

4 次查看(过去 30 天)
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.

回答(1 个)

Sean de Wolski
Sean de Wolski 2012-3-13
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)

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by