필터 지우기
필터 지우기

Fibonacci with Neural Network

조회 수: 1 (최근 30일)
Eduardo
Eduardo 2012년 12월 7일
답변: Greg Heath 2014년 9월 25일
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 :)

채택된 답변

Greg Heath
Greg Heath 2012년 12월 9일
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

추가 답변 (3개)

Pritesh Shah
Pritesh Shah 2012년 12월 7일
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 2012년 12월 7일
help narnet
doc narnet
Hope this helps.
Thank you for formally accepting my answer.
Greg

Greg Heath
Greg Heath 2014년 9월 25일

카테고리

Help CenterFile Exchange에서 Image Data Workflows에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by