Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
A = 12;
h = 4;
y_correct = [5 5 6];
assert(sum(abs(sidesOfTheTriangle(A,h)-y_correct))<1e-3)
ans =
[]
|
2 | Pass |
A = 60;
h = 5;
y_correct = [13 13 24];
assert(sum(abs(sidesOfTheTriangle(A,h)-y_correct))<1e-3)
ans =
[]
|
3 | Pass |
A = 120;
h = 8;
y_correct = [17 17 30];
assert(sum(abs(sidesOfTheTriangle(A,h)-y_correct))<1e-3)
ans =
[]
|
4 | Pass |
A = 50;
h = 11;
y_correct = [11.9021492607341 11.9021492607341 9.09090909090909];
assert(sum(abs(sidesOfTheTriangle(A,h)-y_correct))<1e-3)
ans =
[]
|
5 | Pass |
A = 5;
h = 3;
y_correct = [3.43187671366233 3.43187671366233 10/3];
assert(sum(abs(sidesOfTheTriangle(A,h)-y_correct))<1e-3)
ans =
[]
|
6 | Pass |
A = 150;
h = 10;
y_correct = [18.0277563773199 18.0277563773199 30];
assert(sum(abs(sidesOfTheTriangle(A,h)-y_correct))<1e-3)
ans =
[]
|
7 | Pass |
A = 5;
h = 0.5;
y_correct = [10.0124921972504 10.0124921972504 20];
assert(sum(abs(sidesOfTheTriangle(A,h)-y_correct))<1e-3)
ans =
[]
|
8 | Pass |
A = 42;
h = pi;
y_correct = [13.7331777948941 13.7331777948941 26.7380304394384];
assert(sum(abs(sidesOfTheTriangle(A,h)-y_correct))<1e-3)
ans =
[]
|
Increment a number, given its digits
562 Solvers
Change the sign of even index entries of the reversed vector
296 Solvers
179 Solvers
286 Solvers
241 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!