how to plot below equation get a curve starting from 0 to 100?

4 views (last 30 days)
how to plot T1=exp(((-Alpha)*(m1+1))*((Lambda)/(4*n))); and get curve, m is 0 or even integer, n=2, lambda=0-800, alpha =0-0.020

Answers (1)

David Hill
David Hill on 15 Feb 2020
n=2;
m=0;%you can change m to get different sets of graphs
lambda=0:800;%0-800
alpha=linspace(0,0.02,7);%0-.02
hold on
for k=alpha
T=exp(-k*(m+1)*lambda/4/n);
plot(lambda,T);
end
  4 Comments
Gifari Zulkarnaen
Gifari Zulkarnaen on 16 Feb 2020
David Hill is correct, perhaps the graph you want refers to another equation

Sign in to comment.

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Tags

No tags entered yet.

Products

Community Treasure Hunt

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

Start Hunting!