About "meshgrid" why my Z axis got the same value
Show older comments
I'm trying to calculate the function of some quantum equation
my three axis is (dd,EE,t)as we use(x,y,z)
I found my "ti" matrix they all got the same value
plz if there anyone can help me :(
here's the link of my equation

here's my code,
b=linspace(0,3,100);
E=linspace(31,40,100);
c1=5.732*10.^17;
c2=-1.866*10.^-16;
F=5.4;
[bb,EE]=meshgrid(b,E);
ti=c1*exp(c2*((F*bb).^1.5-(EE).^1.5)./(F+EE./bb));
t=1./ti;
mesh(bb,EE,t);
Accepted Answer
More Answers (0)
Categories
Find more on Particle & Nuclear Physics 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!