Should add tolerance of 10*eps to make this function practical. Otherwise you can have a triangle with a 89.9999999 deg angle and it will say it is not a right triangle. Matlab is a numerical language.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = 3;
b = 4;
c = 5;
flag_correct = true;
assert(isequal(isRightAngled(a,b,c),flag_correct))
|
2 | Pass |
a = 2;
b = 3;
c = 4;
flag_correct = false;
assert(isequal(isRightAngled(a,b,c),flag_correct))
|
3 | Pass |
a = 5;
b = 12;
c = 13;
flag_correct = true;
assert(isequal(isRightAngled(a,b,c),flag_correct))
|
Sort a list of complex numbers based on far they are from the origin.
4327 Solvers
1223 Solvers
Convert a vector into a number
503 Solvers
Cell Counting: How Many Draws?
581 Solvers
302 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!