Octave繪圖

 plot繪製簡單的二維圖 >> x = -10:0.1:10; >> plot (x, sin (x)); >> xlabel ("x"); >> ylabel ("sin (x)"); >> title ("Simple 2-D Plot"); 步驟: 定義自變量的取值區間 定義函數 figure 創建圖紙 plot(...) 在圖紙上繪製x,y的二維圖 hold on (在當前圖上繼續繪圖)
相關文章
相關標籤/搜索