Why does my function give no outputs?
10 views (last 30 days)
Show older comments
Joshua Hall
on 25 Jan 2016
Commented: Walter Roberson
on 25 Jan 2016
function [A]=AccGold()
n = 4;
while Gold(n)-Gold(n-1) > 0.00000001
n = n+1;
A = Gold(n)
end
end
I want to find the first value of Gold(n)-Gold(n-1) such that it is < 0.0000001
0 Comments
Accepted Answer
Walter Roberson
on 25 Jan 2016
Edited: Walter Roberson
on 25 Jan 2016
If the condition is immediately false you never assign to A.
2 Comments
More Answers (0)
See Also
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!