Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
f = @(x,y) 2*x+y;
g = reverseArguments(f);
assert(isequal(g(5,6), 17));
assert(isequal(g(6,5), 16));
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In reverseArguments (line 2)
In ScoringEngineTestPoint1 (line 2)
In solutionTest (line 3)]
|
2 | Fail |
f = @(x,y) x.^y;
g = reverseArguments(f);
assert(isequal(g(2,3), 9));
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In reverseArguments (line 2)
In ScoringEngineTestPoint2 (line 2)
In solutionTest (line 5)]
|
3 | Fail |
f = @(A,theta) A*sin(theta);
g = reverseArguments(f);
assert(isequal(g(4,10), 10*sin(4)));
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In reverseArguments (line 2)
In ScoringEngineTestPoint3 (line 2)
In solutionTest (line 7)]
|
Swap the first and last columns
12410 Solvers
17124 Solvers
Vectorize the digits of an Integer
269 Solvers
309 Solvers
321 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!