Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = 1;
b = 2;
c = 3;
d = 4;
flag_correct = false;
assert(isequal(isTherePythagoreanTriple(a, b, c, d),flag_correct))
|
2 | Pass |
a = 2;
b = 3;
c = 4;
d = 5;
flag_correct = true;
assert(isequal(isTherePythagoreanTriple(a, b, c, d),flag_correct))
|
3 | Pass |
a = 3;
b = 4;
c = 5;
d = 6;
flag_correct = true;
assert(isequal(isTherePythagoreanTriple(a, b, c, d),flag_correct))
|
4 | Pass |
a = 3;
b = 4;
c = 4.5;
d = 5;
flag_correct = true;
assert(isequal(isTherePythagoreanTriple(a, b, c, d),flag_correct))
|
5 | Pass |
a = 3;
b = 3.5;
c = 4;
d = 5;
flag_correct = true;
assert(isequal(isTherePythagoreanTriple(a, b, c, d),flag_correct))
|
Find the numeric mean of the prime numbers in a matrix.
6782 Solvers
Given an unsigned integer x, find the largest y by rearranging the bits in x
781 Solvers
495 Solvers
Solve the set of simultaneous linear equations
274 Solvers
Basics: 'Find the eigenvalues of given matrix
323 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!