Clear Filters
Clear Filters

plugging back a solution to obtain new soultion

2 views (last 30 days)
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

Accepted Answer

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

More Answers (0)

Categories

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

Tags

Community Treasure Hunt

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

Start Hunting!