How to solve Iteration Equation ?

조회 수: 2 (최근 30일)
nand  patel
nand patel 2020년 1월 17일
답변: ME 2020년 1월 17일
How can is solve this iteration equation ? I am bit confused with howto solve this types of equation using matlab coding ?
Isc = 0.6-(1.5*10^-12.*exp(57.97*Isc)-1)

답변 (1개)

ME
ME 2020년 1월 17일
You just need to choose how many iterations you want to do, for example:
n = 1;
You then need an initial value to feed into the first iteration, for example:
lsc(1) = 1;
You can then use a for loop for calculate you iterative values:
for i = 2:n
lsc(i) = ..... some function of lsc(i-1) .............
end

카테고리

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