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.

6 vues (au cours des 30 derniers jours)
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(x,400)==0
leap=x;
end
end
This is how far I've gotten so far. Can someone please help me to finish the code ?

Réponse acceptée

Stephen23
Stephen23 le 8 Déc 2019
Modifié(e) : Stephen23 le 8 Déc 2019
You made a good start, all you need is to use indexing or concatenation to store the values that you want to keep, e.g.:
lpy = [];
for x=1697:2017
if rem(x,4)==0 && rem(x,100)~=0
lpy(end+1) = x; % indexing into LPY
end
if rem(x,100)==0 && rem(x,400)==0
lpy(end+1) = x; % indexing into LPY
end
end
However this is not very neat, nor a very efficient use of MATLAB, because it expands lpy each time data is added to it. Much better would be to get rid of the loop entirely and use logical indexing, e.g.:
vec = 1697:2017;
idx = (rem(vec,4)==0 & rem(vec,100)~=0) | (rem(vec,100)==0 & rem(vec,400)==0);
lpy = vec(idx)

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by