Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 40;
ratio = 16/9;
y_correct = 34.863;
assert(abs(myDaddyLongLeg(x,ratio)-y_correct)<0.01)
[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 myDaddyLongLeg (line 2)
In ScoringEngineTestPoint1 (line 4)
In solutionTest (line 3)]
|
2 | Pass |
x = 25;
ratio = 16/9;
y_correct = 21.789;
assert(abs(myDaddyLongLeg(x,ratio)-y_correct)<0.01)
[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 myDaddyLongLeg (line 2)
In ScoringEngineTestPoint2 (line 4)
In solutionTest (line 5)]
|
3 | Pass |
x = 10;
ratio = 16/9;
y_correct = 8.7158;
assert(abs(myDaddyLongLeg(x,ratio)-y_correct)<0.01)
[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 myDaddyLongLeg (line 2)
In ScoringEngineTestPoint3 (line 4)
In solutionTest (line 7)]
|
Find the numeric mean of the prime numbers in a matrix.
6782 Solvers
Convert a numerical matrix into a cell array of strings
455 Solvers
Getting the indices from a vector
3207 Solvers
462 Solvers
What is Sum Of all elements of Matrix
292 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!