Statistica
5 Domande
0 Risposte
RANK
250.306
of 297.016
REPUTAZIONE
0
CONTRIBUTI
5 Domande
0 Risposte
ACCETTAZIONE DELLE RISPOSTE
20.0%
VOTI RICEVUTI
0
RANK
of 157.725
CONTRIBUTI
0 Problemi
0 Soluzioni
PUNTEGGIO
0
NUMERO DI BADGE
0
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Feeds
Domanda
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...
quasi 14 anni fa | 5 risposte | 0
5
risposteDomanda
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...
quasi 14 anni fa | 2 risposte | 0
2
risposteDomanda
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...
quasi 14 anni fa | 3 risposte | 0
3
risposteDomanda
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; ...
quasi 14 anni fa | 4 risposte | 0
4
risposteDomanda
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 ...
quasi 14 anni fa | 1 risposta | 0