Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
close all
hIn = line;
hOut = line;
assert(isequal(siblings(hIn),hOut))
|
2 | Pass |
close all
hIn = patch;
hOut = line;
assert(isequal(siblings(hIn),hOut))
|
3 | Pass |
close all
hIn = line;
hOut = sort([line; line]);
assert(isequal(siblings(hIn),hOut))
|
4 | Pass |
close all
hIn = subplot(1,2,1);
hOut = subplot(1,2,2);
assert(isequal(siblings(hIn),hOut))
|
5 | Pass |
close all
hIn = figure;
hOut = figure;
assert(isequal(siblings(hIn),hOut))
|
6 | Pass |
close all
hIn = line;
hOut = [];
assert(isequal(siblings(hIn),hOut))
|
7 | Pass |
close all
hIn = 0;
hOut = [];
assert(isequal(siblings(hIn),hOut))
|
1223 Solvers
337 Solvers
Back to basics 25 - Valid variable names
293 Solvers
Getting the absolute index from a matrix
211 Solvers
Try 1.5.4: Celsius to Fahrenheit
609 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!