Fibonacci with Neural Network

1 visualización (últimos 30 días)
Eduardo
Eduardo el 7 de Dic. de 2012
Respondida: Greg Heath el 25 de Sept. de 2014
Hello Im new in this and I want to implement a neural network that given a number returns the fibbonaci number in that position. for example:
given 3 returns 2
or
given 6 returns 8
I tried to trained it giving an input = [1 2 3 4 5 6 ...] and a target = [1 1 2 3 5 8 ....] but there's a problem.
I hope you can help me :)

Respuesta aceptada

Greg Heath
Greg Heath el 9 de Dic. de 2012
A neural net is unnecessary::
F(n) = ( ( 1 + sqrt(5 ))/2 )^n - (( 1 - sqrt(5))/2 )^n ) / sqrt(5)
Thank you for formally accepting my answer.
Greg

Más respuestas (3)

Pritesh Shah
Pritesh Shah el 7 de Dic. de 2012
Hi, I think you have to use different NN Network.
Please understand that for the different op we have different Input.
That is reason for failing in ur case.
U can use Adaptive NN

Greg Heath
Greg Heath el 7 de Dic. de 2012
help narnet
doc narnet
Hope this helps.
Thank you for formally accepting my answer.
Greg

Greg Heath
Greg Heath el 25 de Sept. de 2014

Categorías

Más información sobre Image Data Workflows en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by