Could someone please explain what is wrong in this simple code

Could someone please explain what is wrong in this simple code
cm=@(x,t) exp((-x^2)/(4*Dt))/2*(pi*Dt)^(1/2);
for Dt=[1/16,1/4,1]
for x=-5:.01:5
hold on
plot(x,cm)
end
or
cm=inline('exp((-x^2)/(4*Dt))/2*(pi*Dt)^(1/2)','x','Dt');
for Dt=[1/16,1/4,1]
hold on
fplot(@(x) cm,[-5,5])
end
it doesn't work either way. tnx
end

 采纳的回答

Is this what you want?
cm = @(x,Dt) exp((-x.^2)/(4*Dt))/2*(pi*Dt)^(1/2);
Dt = [1/16,1/4,1];
x = -5:.01:5;
for k=1:numel(Dt)
plot(x,cm(x,Dt(k)))
hold on
end

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Interpolation 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by