Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何计算前 6 次迭代
$x_{0}=0$ of $x_{n+1}=e^(-x_{n})$?
我的问题是你用这些迭代制作了一个表格,我是 Matlab 的新手。
那么,直接的解决方案将是一个简单的for循环:
for
x= zeros(1, 6); for n = 2:6 x(n) = exp(-x(n - 1)); end
请注意,MATLAB 数组中的索引从 1 开始,而不是 0。