若要畫出多條曲線,只需將座標對依次放入plot函數即可: plot(x, sin(x), x, cos(x)); 若要改變顏色,在座標對後面加上相關字串即可: plot(x, sin(x), 'c', x, cos(x), 'g'); 若要 ...
www.cs.nthu.edu.tw