在MATLAB中,可以使用内置函数max()来求解几个数中的最大值。
max()
例如,要找出数组[3, 7, 9, 2, 5]中的最大值,可以这样做:
[3, 7, 9, 2, 5]
A = [3, 7, 9, 2, 5]; max_value = max(A); disp(max_value);
运行上述代码后,MATLAB将会输出数组A中的最大值为9。
A
9