You must have overwritten 'min' as a variable, and doing min(T) is trying to index into a variable at non-integer positions. That, or you've overloaded the function min with another. To check for this, what is the output of
Also, copy and paste the following code exactly, and tell me if it works
clear all
T = [1.0000 242.0000 24.7385 33.8409 1.0000; 2.0000 716.0000 83.2151 50.1744 1.0000];
min(T)
1 Comment
Direct link to this comment
https://es.mathworks.com/matlabcentral/answers/491829-i-cannot-find-the-minimum-values-for-matrix#comment_768763
Direct link to this comment
https://es.mathworks.com/matlabcentral/answers/491829-i-cannot-find-the-minimum-values-for-matrix#comment_768763
Sign in to comment.