Azzera filtri
Azzera filtri

plugging back a solution to obtain new soultion

2 visualizzazioni (ultimi 30 giorni)
Is there a way in I could write a code in which I use a function to obtain a solution then plug that solution back into the function to obtain a new solution

Risposta accettata

Star Strider
Star Strider il 29 Nov 2017
Yes. Use a loop.
Example
x = 2;
for k1 = 1:5
y = x^2
x = y;
end

Più risposte (0)

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by