How to write loops within loops for a function.

조회 수: 1 (최근 30일)
Angel Ani
Angel Ani 2021년 5월 30일
댓글: Angel Ani 2021년 6월 28일
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

채택된 답변

KALYAN ACHARJYA
KALYAN ACHARJYA 2021년 5월 30일
편집: KALYAN ACHARJYA 2021년 5월 30일
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.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by