Statistik
5 Fragen
0 Antworten
RANG
149.502
of 295.486
REPUTATION
0
BEITRÄGE
5 Fragen
0 Antworten
ANTWORTZUSTIMMUNG
20.0%
ERHALTENE STIMMEN
0
RANG
of 20.236
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 153.950
BEITRÄGE
0 Probleme
0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Frage
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...
mehr als 13 Jahre vor | 5 Antworten | 0
5
AntwortenFrage
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...
mehr als 13 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
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...
mehr als 13 Jahre vor | 3 Antworten | 0
3
AntwortenFrage
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; ...
mehr als 13 Jahre vor | 4 Antworten | 0
4
AntwortenFrage
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 ...
mehr als 13 Jahre vor | 1 Antwort | 0