How to calculte and plot this equation in matlab ,when T=(0-3000k)

2 views (last 30 days)
X=
when, T=(0-3000),
Plot(x,t)

Accepted Answer

Thiago Henrique Gomes Lobato
T = 0:3000;
X = @(T) 6.626e-34./sqrt(2*pi*9.11e-31*1.38e-23*T);
figure,plot(X(T),T)

More Answers (0)

Categories

Find more on Get Started with MATLAB 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!