Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y=1;
z_correct = 1;
assert(isequal(dividing(x,y),z_correct))
|
2 | Pass |
x = 1;
y=0;
z_correct = 'ERROR';
assert(isequal(dividing(x,y),z_correct))
z =
'ERROR'
|
3 | Pass |
x = Inf;
y=-Inf;
z_correct = 'ERROR';
assert(isequal(dividing(x,y),z_correct))
z =
'ERROR'
|
4 | Pass |
x = 1;
y=NaN;
z_correct = 'ERROR';
assert(isequal(dividing(x,y),z_correct))
z =
'ERROR'
|
832 Solvers
594 Solvers
07 - Common functions and indexing 2
316 Solvers
Side of an equilateral triangle
2598 Solvers
Find out value of sine given by degree.
232 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!