How to write loops within loops for a function.

1 view (last 30 days)
if true
Given,
Ans1 = 0;
Vs = 8: 0.1: 7; % = I want Vs as 8, 7.9, 7.8,...,7.0
For Vs=Vs-1. %(from 8 to 7) do,
For Z=1:6 %(1,2,...,6)
M= -Z*x + Vs * x
End For
syms J Ans2 = symsum((Vs - Z)/J ,J,0,4) %is a function
If Ans2 >= Ans1 Vs = Vs - 1 % Next Vs is 7.9 Ans1 = Ans2 End if
Vs=Vs-0.1 End For
end

Accepted Answer

KALYAN ACHARJYA
KALYAN ACHARJYA on 30 May 2021
Edited: KALYAN ACHARJYA on 30 May 2021
Vs = 8:-0.1:7
o/p:
8 7.9 7.8 7.7 7.6 7.5 7.4 7.3 7.2 7.1 7
Hoe you can do the later part.

More Answers (0)

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!