Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
mo = 1;
yr = 2014;
momat = makeCalendar(mo,yr);
momat_correct = [ ...
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];
assert(isequal(momat,momat_correct))
DayNumberINI =
4
DayNameINI =
'Wed'
DayNumberFIN =
6
DayNameFIN =
'Fri'
c =
Columns 1 through 29
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
Columns 30 through 35
27 28 29 30 31 0
c =
0 5 12 19 26
0 6 13 20 27
0 7 14 21 28
1 8 15 22 29
2 9 16 23 30
3 10 17 24 31
4 11 18 25 0
c =
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
|
2 | Pass |
mo = 2;
yr = 2015;
momat = makeCalendar(mo,yr);
momat_correct = [ ...
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];
assert(isequal(momat,momat_correct))
DayNumberINI =
1
DayNameINI =
'Sun'
DayNumberFIN =
7
DayNameFIN =
'Sat'
c =
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
c =
1 8 15 22
2 9 16 23
3 10 17 24
4 11 18 25
5 12 19 26
6 13 20 27
7 14 21 28
c =
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
|
3 | Pass |
mo = 10;
yr = 2010;
momat = makeCalendar(mo,yr);
momat_correct = [ ...
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];
assert(isequal(momat,momat_correct))
DayNumberINI =
6
DayNameINI =
'Fri'
DayNumberFIN =
1
DayNameFIN =
'Sun'
c =
Columns 1 through 29
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
Columns 30 through 42
25 26 27 28 29 30 31 0 0 0 0 0 0
c =
0 3 10 17 24 31
0 4 11 18 25 0
0 5 12 19 26 0
0 6 13 20 27 0
0 7 14 21 28 0
1 8 15 22 29 0
2 9 16 23 30 0
c =
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
|
4 | Pass |
mo = 11;
yr = 1972;
momat = makeCalendar(mo,yr);
momat_correct = [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 0 0];
assert(isequal(momat,momat_correct))
DayNumberINI =
4
DayNameINI =
'Wed'
DayNumberFIN =
5
DayNameFIN =
'Thu'
c =
Columns 1 through 29
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
Columns 30 through 35
27 28 29 30 0 0
c =
0 5 12 19 26
0 6 13 20 27
0 7 14 21 28
1 8 15 22 29
2 9 16 23 30
3 10 17 24 0
4 11 18 25 0
c =
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 0 0
|
235 Solvers
177 Solvers
856 Solvers
505 Solvers
52 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!