I want to draw a line in matlab. My scenario is like x=[-400:400] and 'y' should be of the same length but an irregular slope continuous line and finally I want to use plot command for plotting, say plot(x,y). Can anybody suggest how to do it.
Thanks
plot(x,y), then what is the problem? - Oliver Charlesworthplot([-400 -300 -200 300], [150 150 -200 200])- H.Muster