This solution is outdated. To rescore this solution, sign in.
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));
|
Find the sum of all the numbers of the input vector
31964 Solvers
Omit columns averages from a matrix
527 Solvers
483 Solvers
436 Solvers
Convert a Cell Array into an Array
430 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!