我正在编写一个功能来读取火种标签和显影时间。但是,我只能绘制成长阶段。如何按下面的链接绘制另一半(衰减阶段)以完成图形?
以下是代码:
function Q3(c,t)
if c=="S" then
c=0.0029
elseif c=="M" then
c=0.0117
elseif c=="F" then
c=0.0469
elseif c=="U" then
c=0.1876
end
t=0:10:t;
Q=(c)*(t^2);
plot(t,Q,'--r*')
xtitle("The Peak Heat Release Rate = "+string(c*T^2)+"kW")
endfunction
另一半是衰减率,它与增长率具有相同的比率。
答案 0 :(得分:1)
我建议采用这种方式绘制曲线:
Docker desktop for Mac