Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
d1 = datenum('10-Nov-2010');
d2 = datenum('10-Feb-2011');
y_correct = {'30-Nov-2010','31-Dec-2010','31-Jan-2011'};
dates_me=month_ends(d1,d2)
assert(isequal(dates_me,y_correct))
dates_me =
1×3 cell array
{'30-Nov-2010'} {'31-Dec-2010'} {'31-Jan-2011'}
|
2 | Pass |
d1 = datenum('31-Jan-2000');
d2 = datenum('10-Apr-2000');
y_correct = {'31-Jan-2000','29-Feb-2000','31-Mar-2000'};
dates_me=month_ends(d1,d2)
assert(isequal(dates_me,y_correct))
dates_me =
1×3 cell array
{'31-Jan-2000'} {'29-Feb-2000'} {'31-Mar-2000'}
|
3 | Pass |
d1 = datenum('05-Feb-2012');
d2 = datenum('10-Jul-2012');
y_correct = {'29-Feb-2012','31-Mar-2012','30-Apr-2012','31-May-2012','30-Jun-2012'};
dates_me=month_ends(d1,d2)
assert(isequal(dates_me,y_correct))
dates_me =
1×5 cell array
{'29-Feb-2012'} {'31-Mar-2012'} {'30-Apr-2012'} {'31-May-2012'} {'30-Jun-2012'}
|
Find the longest sequence of 1's in a binary sequence.
3369 Solvers
Number of 1s in the Binary Representation of a Number
356 Solvers
Numbers with prime factors 2, 3 and 5.
166 Solvers
Sum of first n terms of a harmonic progression
257 Solvers
Basics: 'Find the eigenvalues of given matrix
323 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!