How can I convert while loop to for loop?
2 views (last 30 days)
Show older comments
This is the loop
while i<=5
E_(i)= x(i).^2;
if i==1
disp(['The amount of energy at fundamental harmonic is: ' num2str(E_(i))]);
else
disp(['The amount of energy at harmonic ' num2str(i-1) ' is: ' num2str(E_(i))]);
end
i=i+1;
end
0 Comments
Accepted Answer
Voss
on 5 Jan 2022
Assuming the while loop starts with i = 1:
for i = 1:5
E_(i)= x(i).^2;
if i==1
disp(['The amount of energy at fundamental harmonic is: ' num2str(E_(i))]);
else
disp(['The amount of energy at harmonic ' num2str(i-1) ' is: ' num2str(E_(i))]);
end
end
0 Comments
More Answers (0)
See Also
Categories
Find more on Loops and Conditional Statements 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!