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))
|
2 | Pass |
S2.foo = 'hello';
S2.bar = 3.14;
S2_correct = {'foo', 'hello'; 'bar', 3.14};
assert(isequal(struct2namedCell(S2), S2_correct))
|
3 | Pass |
S3.A = {1,2,3};
S3_correct = {'A', {1,2,3}};
assert(isequal(struct2namedCell(S3), S3_correct))
|
17465 Solvers
Sort a list of complex numbers based on far they are from the origin.
4326 Solvers
Back to basics 8 - Matrix Diagonals
781 Solvers
Return the first and last character of a string
3447 Solvers
Convert from Fahrenheit to Celsius
7128 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!