Plotting a variable after initally guessing the value

8 ビュー (過去 30 日間)
Sean Sullivan
Sean Sullivan 2018 年 4 月 17 日
コメント済み: Rik 2018 年 4 月 17 日
I am trying to use a numerical method to find out the answer to a function. I use an initial guess and iterate until the answer is correct. I am trying to plot Zg vs. D, but cannot figure out how to save Zg after each iteration of D.
Zg = 1; D = 1:1:20; error = 5; A = 100; for i = 1:length(D)
while error >= 1
if D(i) <= 10
P = 5*D(i) * Zg;
else
P = D(i) * Zg;
end
error = ((A-P)/A)*100;
Zg = Zg +1;
end
end
  1 件のコメント
Rik
Rik 2018 年 4 月 17 日
You can index Zg as well. Also, you shouldn't overwrite the internal function error with a variable.

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by