我写了一个函数,根据波长温度计算强度。这就是温度600 K的代码:
function f=radiation(l,t)
l = linspace(0,10^-5,100); % The interval for the wavelength
a = 3.7415*10^(-16) ; % constant
b = 0.014388; % constant
t=600; % Setting the temperature to 600 K
f = a./(l.^5.*(exp(b./(l*t))-1));
plot(l,f)
现在我想在同一个窗口中绘制不同温度的曲线而不必重复代码。我怎样才能以一种干净的方式做到这一点?