在 scilab 中如何將 sin 繪製為曲線而不是直線? 2024-7-19 • charts 在 scilab 中如何將 sin 繪製為曲線而不是直線? x=[0,90,180,270,360] // sind is sin with argument of degrees. rather than radians. // https://help.scilab.org/docs/5.5.2/en_US/sind.html y=sind(x) plot(x,y) 但我想要更多類似的東西 即曲線而不是直線。 答案1 您需要更多的點才能將圖表視為正弦函數,而不僅僅是襯托線。 新增者: 巴洛普 像這樣 x=[0:1:360] 以 1 為步長從 0 增加到 360 相關內容