Problem 2336. Calendar Matrix
Return a calendar matrix for the given values of month and year. Assume that Sunday is the first day of the week. The resulting calendar month will have seven columns and only as many rows (weeks) as needed to display all days of the month. Thus it might have either 4, 5, or 6 rows. Days preceding the first of the month or following the last of the month are given by zeros.
Examples
>> mo = 1 >> yr = 2014 >> momat = makeCalendar(mo,yr)
0 0 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 0
>> mo = 2 >> yr = 2015 >> momat = makeCalendar(mo,yr)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
>> mo = 10 >> yr = 2010 >> momat = makeCalendar(mo,yr)
0 0 0 0 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 0 0 0 0 0 0
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers123
Suggested Problems
-
22323 Solvers
-
Replace NaNs with the number that appears to its left in the row.
3010 Solvers
-
Number of 1s in the Binary Representation of a Number
455 Solvers
-
A Simple Tide Gauge with MATLAB
379 Solvers
-
Is this is a Tic Tac Toe X Win?
513 Solvers
More from this Author50
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!