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))
ans =
1×2 cell array
{'foobar'} {[1.2300]}
|
2 | Pass |
S2.foo = 'hello';
S2.bar = 3.14;
S2_correct = {'foo', 'hello'; 'bar', 3.14};
assert(isequal(struct2namedCell(S2), S2_correct))
ans =
2×2 cell array
{'foo'} {'hello' }
{'bar'} {[3.1400]}
|
3 | Pass |
S3.A = {1,2,3};
S3_correct = {'A', {1,2,3}};
assert(isequal(struct2namedCell(S3), S3_correct))
ans =
1×2 cell array
{'A'} {1×3 cell}
|
707 Solvers
926 Solvers
579 Solvers
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
297 Solvers
569 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!