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))
w =
2.2361
x =
3.1623
y =
3.6056
|
2 | Pass |
a = 2;
b = 3;
c = 4;
d = 5;
flag_correct = true;
assert(isequal(isTherePythagoreanTriple(a, b, c, d),flag_correct))
w =
3.6056
x =
4.4721
y =
5
|
3 | Pass |
a = 3;
b = 4;
c = 5;
d = 6;
flag_correct = true;
assert(isequal(isTherePythagoreanTriple(a, b, c, d),flag_correct))
w =
5
x =
5.8310
y =
6.4031
|
4 | Pass |
a = 3;
b = 4;
c = 4.5;
d = 5;
flag_correct = true;
assert(isequal(isTherePythagoreanTriple(a, b, c, d),flag_correct))
w =
5
x =
5.4083
y =
6.0208
|
5 | Pass |
a = 3;
b = 3.5;
c = 4;
d = 5;
flag_correct = true;
assert(isequal(isTherePythagoreanTriple(a, b, c, d),flag_correct))
w =
4.6098
x =
5
y =
5.3151
|
Find the numeric mean of the prime numbers in a matrix.
6782 Solvers
Compute a dot product of two vectors x and y
750 Solvers
250 Solvers
365 Solvers
903 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!