Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
s = { ...
'Day Temp'
' 1 1.3'
' 2 1.12'
' 3 17'
' 4 -32'
' 5 13'
' 6 4.4'
' 7 19'};
t_correct = [1.3 1.12 17 -32 13 4.4 19];
assert(isequal(read_and_interp(s),t_correct));
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In read_and_interp (line 2)
In ScoringEngineTestPoint1 (line 11)
In solutionTest (line 3)]
|
2 | Pass |
s = { ...
'Day Temp'
' 1 1.3'
' 2 1.12'
' 3 17'
' 4 16'
' 5 9999'
' 6 9999'
' 7 19'};
t_correct = [1.3 1.12 17 16 17 18 19];
assert(isequal(read_and_interp(s),t_correct));
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In read_and_interp (line 2)
In ScoringEngineTestPoint2 (line 11)
In solutionTest (line 5)]
|
3 | Pass |
s = { ...
'Day Temp'
' 1 -5'
' 2 19'
' 3 1'
' 4 9999'
' 5 3'};
t_correct = [-5 19 1 2 3];
assert(isequal(read_and_interp(s),t_correct));
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In read_and_interp (line 2)
In ScoringEngineTestPoint3 (line 9)
In solutionTest (line 7)]
|
Omit columns averages from a matrix
527 Solvers
725 Solvers
2538 Solvers
450 Solvers
1822 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!