Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
theta = 2*pi;
x_correct = [1; 1];
assert(sum(abs((solve_lin(theta)-x_correct)))< 1e-5)
b =
1
1
A =
1.0000 -0.0000
0.0000 1.0000
x =
1.0000
1.0000
|
2 | Pass |
theta = pi;
x_correct = [-1; -1];
assert(sum(abs((solve_lin(theta)-x_correct)))< 1e-5)
b =
1
1
A =
-1.0000 0.0000
-0.0000 -1.0000
x =
-1.0000
-1.0000
|
3 | Pass |
theta = -0.5;
x_correct = [1.357;0.3982];
assert(sum(abs((solve_lin(theta)-x_correct)))< 1e-4)
b =
1
1
A =
0.8776 -0.4794
0.4794 0.8776
x =
1.3570
0.3982
|
given 3 sides, find area of this triangle
680 Solvers
579 Solvers
698 Solvers
321 Solvers
Given a square and a circle, please decide whether the square covers more area.
351 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!