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

loop equation

X=
when, T=(0-3000),
Plot(x,t)

Best Answer

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