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'.
|
5703 Solvers
2500 Solvers
309 Solvers
559 Solvers
163 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!