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'.
|
1961 Solvers
Remove the small words from a list of words.
672 Solvers
Compute a dot product of two vectors x and y
750 Solvers
Simple equation: Annual salary
3779 Solvers
340 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!