How to solve Iteration Equation ?

1 view (last 30 days)
nand  patel
nand patel on 17 Jan 2020
Answered: ME on 17 Jan 2020
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)

Answers (1)

ME
ME on 17 Jan 2020
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

Categories

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

Products

Community Treasure Hunt

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

Start Hunting!