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 |
a = 3;
b = 4;
c = 5;
y_correct = 2.4;
assert(isequal(triangle_height(a, b, c), y_correct));
|
2 | Pass |
a = 1;
b = 2;
c = 3;
y_correct = NaN;
assert(isequaln(triangle_height(a, b, c), y_correct));
|
3 | Pass |
a = 0;
b = 1;
c = 1;
y_correct = NaN;
assert(isequaln(triangle_height(a, b, c), y_correct));
|
4 | Pass |
a = -3;
b = -4;
c = -5;
y_correct = NaN;
assert(isequaln(triangle_height(a, b, c), y_correct));
|
351 Solvers
Convert a numerical matrix into a cell array of strings
152 Solvers
469 Solvers
145 Solvers
255 Solvers