What code would I use for this question
Ältere Kommentare anzeigen
develop a code that determines the following sum for an value of x>0. The program calculates the sum by adding the terms and stopping when either, the value of a term is less than or equal to 0.0001, or the number of terms exceeds zero. If the value of the function is calculated successfully, it displays the value(sum) and the number of terms used. If the looping stops because the 30th term is not smaller than 0.001 the program displays a message indicating "more than 30 terms are needed."
sum(x^n/n!)=x/1!+x^2/2!+x^3+3!
1 Kommentar
Star Strider
am 29 Okt. 2015
‘...or the number of terms exceeds zero’
How do we interpret that?
Antworten (2)
Muthu Annamalai
am 29 Okt. 2015
0 Stimmen
The code depends on who gets the extra credit J
I would recommend using a while loop like another example in page 4 of Cleve Moler's book, http://www.mathworks.com/moler/zeros.pdf and keeping a running sum.
Goodluck!
Manuel Espinoza
am 30 Okt. 2015
0 Stimmen
me and some people from class were able to find a sort of template to set up the problem. if you go on page 332 from the book, there is a set of code that is pretty similar to the problem that you can tweak to solve this problem. and this is 'definitely' not considered cheating.
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!