Problem 1044. Create a Cell array of month-end date strings within a date range
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 = month_ends(date_start, date_end);
dates_me
dates_me =
'30-Nov-2010' '31-Dec-2010' '31-Jan-2011'
This is the improved proper usage of Cell-array version of Challenge 1040. Thanks to J.G. for identifying the proper usage.
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers75
Suggested Problems
-
How to find the position of an element in a vector without using the find function
2783 Solvers
-
1423 Solvers
-
Project Euler: Problem 2, Sum of even Fibonacci
2770 Solvers
-
Project Euler: Problem 4, Palindromic numbers
1242 Solvers
-
226 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!