no range??
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
sides = [1 2 1000];
y_correct = false;
assert(isequal(triangle(sides),y_correct))
|
2 | Fail |
%%
sides = [3 4 5];
y_correct = true;
assert(isequal(triangle(sides),y_correct))
Error: Undefined function 'range' for input arguments of type 'double'.
|
3 | Fail |
%%
sides = [5 5 5];
y_correct = true;
assert(isequal(triangle(sides),y_correct))
Error: Undefined function 'range' for input arguments of type 'double'.
|
4 | Fail |
%%
sides = [6 6 6];
y_correct = true;
assert(isequal(triangle(sides),y_correct))
Error: Undefined function 'range' for input arguments of type 'double'.
|
5 | Fail |
%%
sides = [1 1 1];
y_correct = true;
assert(isequal(triangle(sides),y_correct))
Error: Undefined function 'range' for input arguments of type 'double'.
|
6 | Fail |
%%
sides = [1 2 2];
y_correct = true;
assert(isequal(triangle(sides),y_correct))
Error: Undefined function 'range' for input arguments of type 'double'.
|
7 | Pass |
%%
sides = [2 2 5];
y_correct = false;
assert(isequal(triangle(sides),y_correct))
|
8 | Fail |
%%
sides = [5 2 2];
y_correct = false;
assert(isequal(triangle(sides),y_correct))
Error: Undefined function 'range' for input arguments of type 'double'.
|
9 | Fail |
%%
sides = [1 3 1];
y_correct = false;
assert(isequal(triangle(sides),y_correct))
Error: Undefined function 'range' for input arguments of type 'double'.
|
Find all elements less than 0 or greater than 10 and replace them with NaN
11633 Solvers
17162 Solvers
300 Solvers
583 Solvers
409 Solvers