photo

Tasbiha Azeemi


Con actividad desde 2018

Followers: 0   Following: 0

Mensaje

Estadística

  • First Answer

Ver insignias

Feeds

Ver por

Respondida
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...

alrededor de 6 años hace | 0

Respondida
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

alrededor de 6 años hace | 0