Storing function outputs to an array so they can be plotted

2 views (last 30 days)
Hi,
Im new to MATLAB and am trying to get a for loop to save a range of outputted values so that i can then plot them against data i already have (Lambda). Any help would be greatly appreciated as im at a loss.
Currently my code only saves 1 value for A and 1 value for I.
my code is;
for A= 1,1:20;
H_l = 2*(A+1);
Sig_Lambda = 1*10^-9;
I = A*H_l*Sig_Lambda
end
plot(Lambda,I)

Accepted Answer

Torsten
Torsten on 8 Jan 2022
Edited: Torsten on 8 Jan 2022
A = 1:20;
H_l = 2*(A+1);
Sig_Lambda = 1*10^-9;
I = A.*H_l*Sig_Lambda;
plot(Lambda,I)
works if Lambda is a sorted 1x20 vector.
  1 Comment
Ethan Muir
Ethan Muir on 8 Jan 2022
Thank you very much, i fixed my Lambda vector and got rid of the for loop and it works now. :)

Sign in to comment.

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Products


Release

R2018a

Community Treasure Hunt

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

Start Hunting!