newton
DownloadTélécharger
Actions
Vote :
ScreenshotAperçu

Informations
Catégorie :Category: nCreator TI-Nspire
Auteur Author: mariaferojas
Type : Classeur 3.0.1
Page(s) : 1
Taille Size: 1.43 Ko KB
Mis en ligne Uploaded: 03/09/2025 - 05:04:28
Uploadeur Uploader: mariaferojas (Profil)
Téléchargements Downloads: 1
Visibilité Visibility: Archive publique
Shortlink : https://tipla.net/a4831216
Type : Classeur 3.0.1
Page(s) : 1
Taille Size: 1.43 Ko KB
Mis en ligne Uploaded: 03/09/2025 - 05:04:28
Uploadeur Uploader: mariaferojas (Profil)
Téléchargements Downloads: 1
Visibilité Visibility: Archive publique
Shortlink : https://tipla.net/a4831216
Description
Fichier Nspire généré sur TI-Planet.org.
Compatible OS 3.0 et ultérieurs.
<<
// Newton-Raphson para TI-Nspire CX II Input "Enter initial value x0:", x0 Input "Enter tolerance eps (e.g., 1E-8):", eps Input "Enter maximum number of iterations Nmax:", Nmax x0 x_old 0 n 0 error Disp "n", "x_i", "f(x_i)", "f'(x_i)", "Error" While n < Nmax AND error >= eps n + 1 n x_old - f(x_old)/df(x_old) x_new abs(x_new - x_old) error Disp n, x_new, f(x_new), df(x_new), error x_new x_old EndWhile If error < eps Then Disp "Converged in ", n, " iterations." EndIf If error >= eps Then Disp "Did not converge in ", Nmax, " iterations." EndIf Made with nCreator - tiplanet.org
>>
Compatible OS 3.0 et ultérieurs.
<<
// Newton-Raphson para TI-Nspire CX II Input "Enter initial value x0:", x0 Input "Enter tolerance eps (e.g., 1E-8):", eps Input "Enter maximum number of iterations Nmax:", Nmax x0 x_old 0 n 0 error Disp "n", "x_i", "f(x_i)", "f'(x_i)", "Error" While n < Nmax AND error >= eps n + 1 n x_old - f(x_old)/df(x_old) x_new abs(x_new - x_old) error Disp n, x_new, f(x_new), df(x_new), error x_new x_old EndWhile If error < eps Then Disp "Converged in ", n, " iterations." EndIf If error >= eps Then Disp "Did not converge in ", Nmax, " iterations." EndIf Made with nCreator - tiplanet.org
>>