Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1+1i;
y_correct = 'I';
assert(isequal(your_fcn_name(x),y_correct))
y =
I
|
2 | Pass |
%%
x = -1-1i;
y_correct = 'III';
assert(isequal(your_fcn_name(x),y_correct))
y =
III
|
3 | Pass |
%%
x = 1-1i;
y_correct = 'IV';
assert(isequal(your_fcn_name(x),y_correct))
y =
IV
|
4 | Pass |
%%
x = -1+1i;
y_correct = 'II';
assert(isequal(your_fcn_name(x),y_correct))
y =
II
|
Find the numeric mean of the prime numbers in a matrix.
6782 Solvers
Back to basics 20 - singleton dimensions
254 Solvers
Matrix indexing with two vectors of indices
485 Solvers
Determine Whether an array is empty
646 Solvers
Vectorize the digits of an Integer
269 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!