photo

Tasbiha Azeemi


Actif depuis 2018

Followers: 0   Following: 0

Message

Statistiques

  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
Fibonacci Sequence while loop.
Try this one! function a=fabonacciSeq(n) a(1)=0; a(2)=1; i=1; while i<=n a(i+2)=a(i+1) +a(i); i=i+1; end...

environ 6 ans il y a | 0

Réponse apportée
For loop fibonacci sequence
Try this one!!! function a=FabonacciSequence(n) a(1)=0; a(2)=1; for i=1:n; a(i+2)=a(i+1)+a(i) end end

environ 6 ans il y a | 0