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 |
%%
x = 1+2i;
y_correct = 3;
assert(isequal(sumImagNum(x),y_correct))
|
2 | Pass |
%%
x = -5-2i;
y_correct = -7;
assert(isequal(sumImagNum(x),y_correct))
|
3 | Pass |
%%
x = 14*i;
y_correct = 14;
assert(isequal(sumImagNum(x),y_correct))
|
4 | Pass |
%%
x = 8;
y_correct = 8;
assert(isequal(sumImagNum(x),y_correct))
|
819 Solvers
309 Solvers
Output any real number that is neither positive nor negative
316 Solvers
07 - Common functions and indexing 2
316 Solvers
Find out sum of prime number till given number
125 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!