Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
in = {[1 2 1],[1 -1],[1 1],[1 53 6]};
out_correct = {[1 2 1],[1 1],[1 53 6]};
assert(isequal(find_stable(in),out_correct))
polyOut =
1×3 cell array
{1×3 double} {1×2 double} {1×3 double}
|
2 | Pass |
in = {[1 1],[1 -1]};
out_correct = {[1 1]};
assert(isequal(find_stable(in),out_correct))
polyOut =
1×1 cell array
{1×2 double}
|
3 | Pass |
in = {[1 0 1],[2 -5 2],[2 5 2]};
out_correct = {[1 0 1],[2 5 2]};
assert(isequal(find_stable(in),out_correct))
polyOut =
1×2 cell array
{1×3 double} {1×3 double}
|
Remove all the words that end with "ain"
1292 Solvers
Renaming a field in a structure array
732 Solvers
246 Solvers
277 Solvers
Generate a random matrix A of (1,-1)
211 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!