Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1023;
y_correct = '3FF';
assert(isequal(dectohex(x),y_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 dectohex (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
ans =
1
|
2 | Pass |
x = 10;
y_correct = '00A';
assert(isequal(dectohex(x),y_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 dectohex (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
ans =
1
|
3 | Pass |
x = 5563;
y_correct = '15BB';
assert(isequal(dectohex(x),y_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 dectohex (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
ans =
1
|
4 | Pass |
x = 0;
y_correct = '000';
assert(isequal(dectohex(x),y_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 dectohex (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
ans =
1
|
5700 Solvers
340 Solvers
271 Solvers
172 Solvers
Compute LOG(1+X) in natural log
169 Solvers