Statistiques
5 Questions
0 Réponses
RANG
250 336
of 297 046
RÉPUTATION
0
CONTRIBUTIONS
5 Questions
0 Réponses
ACCEPTATION DE VOS RÉPONSES
20.0%
VOTES REÇUS
0
RANG
of 20 422
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 157 776
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Question
Fibonacci and Golden Ratio
One of the ways to compute the golden ration is by taking the limit of the ratios of successive terms of the Fibonacci sequenc...
presque 14 ans il y a | 5 réponses | 0
5
réponsesQuestion
Secant
Write a Matlab function secant:m which finds a root of a given function f(x)using Secant method. Function f(x) should be stored...
presque 14 ans il y a | 2 réponses | 0
2
réponsesQuestion
Sorting in Descending Order without SORT
I have to write a code that sorts a vector WITHOUT using the sort command (only if/for statements) into a descending order. Here...
presque 14 ans il y a | 3 réponses | 0
3
réponsesQuestion
FEVAL error in implementing Newton's method.
This is M-File 1 function sol=newtonian(fn,dfn,x0,tol) tol=0.000001; old=x0+1; while abs (x0 - old) > tol; old=x0; ...
presque 14 ans il y a | 4 réponses | 0
4
réponsesQuestion
How do I apply Newton's method to this problem?
I need to write a MATLAB program that uses the Newton's Method to find the root of this function: x^2-e^2-2=0 Xo=-2 Root ...
presque 14 ans il y a | 1 réponse | 0