matlab 畫圖例題篇

1、畫出[0,2pi] 範圍之內的sin曲線 syms x >> x=[0:0.01:2*pi]; >> plot(sin(x)) 2、畫出間距0.05,[0,2pi] 範圍之內的sin曲線的離散圖形 syms x >> x=[0:0.05:2*pi]; >> plot(sin(x))   3、利用已學知識,畫出下面的圖形: >> t=[0:0.01:3.5]; >> plot(sin(t).*s
相關文章
相關標籤/搜索