matlab 求向量最大值
时间: 2023-08-03 18:03:17 浏览: 179
在 Matlab 中,你可以使用 `max` 函数来求解向量的最大值。以下是使用方法示例:
```matlab
vector = [1, 4, 2, 9, 5];
max_value = max(vector);
disp(max_value);
```
输出结果将会是 `9`,即向量 `vector` 中的最大值。
另外,如果你还想获取最大值所在的索引位置,可以使用 `max` 函数的两个输出参数形式:
```matlab
[vector_max, max_index] = max(vector);
disp(vector_max);
disp(max_index);
```
其中,`vector_max` 是最大值,`max_index` 是最大值所在的索引位置。
阅读全文