Community Profile

photo

Lakshan Bandara


Last seen: más de 2 años hace Con actividad desde 2019

Followers: 0   Following: 0

Estadísticas

  • Thankful Level 2
  • Thankful Level 1

Ver insignias

Feeds

Ver por

Pregunta


Starting from the year 1697, store all leap years until 2017 in a vector. A leap year is a year which is divisible by 4 but NOT 100 but if the year is divisible by 100 then it must also be divisible by 400 to be considered a leap year.
clc; clear; close all; for x=1697:2017 if rem(x,4)==0 && rem(x,100)~=0 leap=x end if rem(x,100)==0 && rem...

más de 4 años hace | 1 respuesta | 0

1

respuesta

Pregunta


'Store the first N (user enters N) Fibonacci numbers in a row vector.'I know how to get user entered number of fibbonachi numbers. But I don't know how to show them in a row vector.
clc; clear; close all; N=input('Enter the number = '); B(1)=0; B(2)=1; count=1; for i=3:N B(1,i)=B(i-2)+B(i-1); ...

más de 4 años hace | 1 respuesta | 0

1

respuesta