Why does my function give no outputs?

11 Ansichten (letzte 30 Tage)
Joshua Hall
Joshua Hall am 25 Jan. 2016
Kommentiert: Walter Roberson am 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

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 25 Jan. 2016
Bearbeitet: Walter Roberson am 25 Jan. 2016
If the condition is immediately false you never assign to A.
  2 Kommentare
Joshua Hall
Joshua Hall am 25 Jan. 2016
I want the loop to run until n is such that Gold(n)-Gold(n-1)<0.0000001, and then I want the value of Gold(n) at this n. Is there an easy way to change my function to do this?
Walter Roberson
Walter Roberson am 25 Jan. 2016
Initialize A=Gold(n)

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by