Clear Filters
Clear Filters

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

1 view (last 30 days)
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

Accepted Answer

Image Analyst
Image Analyst on 20 Nov 2012
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 Comments
Mauricio
Mauricio on 20 Nov 2012
Thanks for the help, just one more question How are tables in matlab?
Image Analyst
Image Analyst on 20 Nov 2012
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.

Sign in to comment.

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!