我想用 X 和 Y 绘制,当我更新 X 的范围时,向量大小会改变,所以需要像这样再次分配 Y:
>> y = sin(x)
如果我不这样做,我通常会得到:
>> plot (x,y)
Error using plot
Vectors must be the same lengths.
所以我想知道,如果有一种方法可以自动完成
我想用 X 和 Y 绘制,当我更新 X 的范围时,向量大小会改变,所以需要像这样再次分配 Y:
>> y = sin(x)
如果我不这样做,我通常会得到:
>> plot (x,y)
Error using plot
Vectors must be the same lengths.
所以我想知道,如果有一种方法可以自动完成