Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Did I set the problem correctly?

1 回表示 (過去 30 日間)
Ruten9
Ruten9 2015 年 11 月 10 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
https://gyazo.com/a6c00ee08cdd03c313b4be970d361ac0
This is my code:
clear all;clc;
N=1;
SI= exp(-1.*N);
tol = 10.^(-1.*10);
y = zeros(1,0);
while 1,
SI= exp(-1.*N);
y(1,end+1) = SI + rand;
if SI<=tol
break;
end
N=N+1;
end
k=0:10:230;
y
N ;%number of iterations N that were required for convergence
%Plotting
plot(k,y)

回答 (0 件)

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by