知道坐标用matlab作图,知道一系列的点,希望做出一个曲线图

2024-11-23 11:03:08
推荐回答(1个)
回答1:

比如你的点是:
x=rand(12);
x=x(:)';
y=randint(1,144,[-100,100]);
plot(x,y,'-.b')