This is a variation of Get an array of month-ends by T.D. where the result is now a cell array of date strings.
For example:
date_start = datenum('10 Nov 2010');
date_end = datenum('10 Feb 2011');
[dates_me{1:3}] = month_ends(date_start, date_end);
dates_me
dates_me =
'30-Nov-2010' '31-Dec-2010' '31-Jan-2011'
The test suite uses
[y{1:3}]=month_ends(d1,d2);
Is there a way to receive variable number of cells from a function call?
J.G pointed out a better Cell array implementation that does not use varargout. This revised version is Challenge 1044
Related challenge is Usage of varargout.
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers28
Suggested Problems
-
Find the peak 3n+1 sequence value
2565 Solvers
-
Read a column of numbers and interpolate missing data
2350 Solvers
-
172 Solvers
-
Two-output anonymous function?
84 Solvers
-
Convert elements in numeric array into different class
59 Solvers
More from this Author308
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
You could just use
dates_me = month_ends(date_start, date_end);
to get a variable number of cells in the output. That avoids the user of varargout and the limitation to the number of outputs.