How calculate the first 6 iterations when x_0 = 0 of x_{n+1}=e^(-x_{n})?

1 次查看(过去 30 天)
How calculate the first 6 iterations when x_0 = 0 of x_{n+1}=e^(-x_{n})?
My problem is that you make a table with these iterations, I am new to Matlab and I hope you can help me

采纳的回答

Image Analyst
Image Analyst 2012-11-20
First set x_0 equal to zero, like you've already done. Then you need a for loop where the index is called n and goes from 0 to whatever. In the loop, assign x(n+1). To do e to a power, use the exp() function. Use parentheses instead of braces. That should be more than enough hints. Look up the for loop in the help if you don't know how to do a for loop.
  2 个评论
Mauricio
Mauricio 2012-11-20
Thanks for the help, just one more question How are tables in matlab?
Image Analyst
Image Analyst 2012-11-20
You can use the uitable() command if you want a spreadsheet-like table on a GUI. Otherwise, just put the name of the variable as a line in your program and it will display the matrix to the command window.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by