This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
A = 60;
h = 5;
y_correct = [0.3752 0.3752 0.9623];
tolerance = 1e-4;
y = theSineOfAnglesOfATriangle(A,h);
assert(abs(y(1)-y_correct(1))<tolerance)
assert(abs(y(2)-y_correct(2))<tolerance)
assert(abs(y(3)-y_correct(3))<tolerance)
s3 =
0.9623
ans =
0.3752 0.3752 0.9623
|
2 | Pass |
A = 12;
h = 4;
y_correct = [0.7174 0.7174 0.9320];
tolerance = 1e-4;
y = theSineOfAnglesOfATriangle(A,h);
assert(abs(y(1)-y_correct(1))<tolerance)
assert(abs(y(2)-y_correct(2))<tolerance)
assert(abs(y(3)-y_correct(3))<tolerance)
s3 =
0.9320
ans =
0.7174 0.7174 0.9320
|
3 | Pass |
A = 120;
h = 8;
y_correct = [0.4534 0.4534 0.9813];
tolerance = 1e-4;
y = theSineOfAnglesOfATriangle(A,h);
assert(abs(y(1)-y_correct(1))<tolerance)
assert(abs(y(2)-y_correct(2))<tolerance)
assert(abs(y(3)-y_correct(3))<tolerance)
s3 =
0.9813
ans =
0.4534 0.4534 0.9813
|
4 | Pass |
A = 11;
h = 7;
y_correct = [0.828103613613504 0.828103613613504 0.424198555538884];
tolerance = 1e-4;
y = theSineOfAnglesOfATriangle(A,h);
assert(abs(y(1)-y_correct(1))<tolerance)
assert(abs(y(2)-y_correct(2))<tolerance)
assert(abs(y(3)-y_correct(3))<tolerance)
s3 =
0.4242
ans =
0.8281 0.8281 0.4242
|
5 | Pass |
A = 10;
h = pi;
y_correct = [0.646090546283235 0.646090546283235 0.989166179104111];
tolerance = 1e-4;
y = theSineOfAnglesOfATriangle(A,h);
assert(abs(y(1)-y_correct(1))<tolerance)
assert(abs(y(2)-y_correct(2))<tolerance)
assert(abs(y(3)-y_correct(3))<tolerance)
s3 =
0.9892
ans =
0.6461 0.6461 0.9892
|
6 | Pass |
A = 100;
h = 90;
y_correct = [0.841429811769772 0.841429811769772 0.0246869683113754];
tolerance = 1e-4;
y = theSineOfAnglesOfATriangle(A,h);
assert(abs(y(1)-y_correct(1))<tolerance)
assert(abs(y(2)-y_correct(2))<tolerance)
assert(abs(y(3)-y_correct(3))<tolerance)
s3 =
0.0247
ans =
0.8414 0.8414 0.0247
|
Return unique values without sorting
486 Solvers
"Low : High - Low : High - Turn around " -- Create a subindices vector
262 Solvers
convert matrix to single column
217 Solvers
47 Solvers
Approximation of Pi (vector inputs)
49 Solvers