Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
C = 0;
lim = 5;
N_correct = 5;
assert(isequal(mandelbrot(C,lim),N_correct))
|
2 | Fail |
C = [0 0.5; 1 4];
lim = 5;
N_correct = [5 4; 2 1];
assert(isequal(mandelbrot(C,lim),N_correct))
|
3 | Fail |
i = sqrt(-1);
C = [i 1 -2*i -2];
lim = 10;
N_correct = [10 2 1 10];
assert(isequal(mandelbrot(C,lim),N_correct))
|
Find relatively common elements in matrix rows
865 Solvers
351 Solvers
Multiples of a Number in a Given Range
214 Solvers
232 Solvers
530 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!