Wrong equastion of XY dependence
Show older comments
Hi I try to solve following problem.
I try to type following equastion of XY dependence:
x= [-5,15]
a= 1
b= 12
c= 2.4
r= 1
y= -1*(a-b*(((x)-r)).^4).*(exp(-1*c*((x)-r).^2))
figure
plot (x,y)
it should be this equation:

And it should have this shape of XY dependence

But it give me the wrong shape (like linear XY dependence).
Can anybody advise, where the mistake i?
Thank you
P.
Accepted Answer
More Answers (1)
David Sanchez
on 7 Aug 2014
Instead of your definition of x, try the folowing one:
x= -5:.01:15; % array of 2001 elements, your definition were a mere 2 element array
a= 1;
b= 12;
c= 2.4;
r= 1;
y= -1*(a-b*(((x)-r)).^4).*(exp(-1*c*((x)-r).^2));
figure
plot (x,y)
Categories
Find more on Mathematics in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!