我有SCILAB 我如何可以繪製包含函數的一點改進繪圖函數,如果和<像Scilab的使用,如果
function y = alpha(t)
if (t < 227.8) then
y = 0.75;
elseif (t < 300) then
y = 2.8 - 0.009 .* t;
else
y = 0.1;
end
endfunction
和
function [r]=minus_alpha(t)
r = 1 - alpha(t)
endfunction
當我使用
x = linspace(0,300)
plot(x, alpha(x))
我收到了錯誤訊息
WARNING: Transposing row vector X to get compatible dimensions
plot2d: falsche Größe für Eingangsargument: inkompatible Größen.
Error 999 : in plot2d called by plot
對不起德國混合。謝謝。