This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
S.foobar = 1.23;
S_correct = {'foobar', 1.23};
assert(isequal(struct2namedCell(S), S_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 struct2namedCell (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
S2.foo = 'hello';
S2.bar = 3.14;
S2_correct = {'foo', 'hello'; 'bar', 3.14};
assert(isequal(struct2namedCell(S2), S2_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 struct2namedCell (line 2)
In ScoringEngineTestPoint2 (line 4)
In solutionTest (line 5)]
|
3 | Pass |
S3.A = {1,2,3};
S3_correct = {'A', {1,2,3}};
assert(isequal(struct2namedCell(S3), S3_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 struct2namedCell (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
36219 Solvers
3417 Solvers
Create matrix of replicated elements
265 Solvers
Celsius to Fahrenheit converter
280 Solvers
474 Solvers