Generate a column vector y with the same number of elements as x that has evenly spaced values ranging from the minimum value in x to the maximum value in x.
时间: 2023-05-11 17:01:52 浏览: 144
求向量x中元素的平均值、最大值、最小值、均方根值
您可以使用MATLAB中的linspace函数来生成一个列向量y,该向量具有与x相同的元素数量,其值从x中的最小值到最大值之间均匀分布。具体代码如下:
y = linspace(min(x), max(x), numel(x))'
阅读全文