Estadística
5 Preguntas
0 Respuestas
CLASIFICACIÓN
250.306
of 297.016
REPUTACIÓN
0
CONTRIBUCIONES
5 Preguntas
0 Respuestas
ACEPTACIÓN DE RESPUESTAS
20.0%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 20.419
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 157.725
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
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...
casi 14 años hace | 5 respuestas | 0
5
respuestasPregunta
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...
casi 14 años hace | 2 respuestas | 0
2
respuestasPregunta
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...
casi 14 años hace | 3 respuestas | 0
3
respuestasPregunta
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; ...
casi 14 años hace | 4 respuestas | 0
4
respuestasPregunta
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 ...
casi 14 años hace | 1 respuesta | 0