In the following,I want the loop to exit and print the value of i, when Price1 becomes equal to Price.However,Matlab just gives i=0.3 always(the last value of i in the for loop). What's wrong?
Price=1.8766
for i=0.2:0.005:0.3
Price1=blsprice(21,20,0.1,0.25,i)
if Price1==Price
disp(i)
end
end

回答 (1 件)

madhan ravi
madhan ravi 2018 年 10 月 28 日

0 投票

Price=1.8766
for i=0.2:0.005:0.3
Price1=blsprice(21,20,0.1,0.25,i)
if Price1==Price
disp(i)
break
else
continue
end
end

カテゴリ

ヘルプ センター および File ExchangeLoops and Conditional Statements についてさらに検索

製品

質問済み:

2018 年 10 月 28 日

回答済み:

2018 年 10 月 28 日

Community Treasure Hunt

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

Start Hunting!

Translated by