This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x1=[2 2 6];
x2=[1 -1 0];
[x,y] = system_solution(x1,x2);
assert(sum(abs(x-1.5))<1e-8)
assert(sum(abs(y-1.5))<1e-8)
|
2 | Fail |
x1=[3 2 5];
x2=[2 2 4];
[x,y] = system_solution(x1,x2);
assert(sum(abs(x-1))<1e-8)
assert(sum(abs(y-1))<1e-8)
|
3 | Fail |
x1=[2 1 1];
x2=[4 1 6];
[x,y] = system_solution(x1,x2);
assert(sum(abs(x-2.5))<1e-8)
assert(sum(abs(y+4))<1e-8)
|
4 | Fail |
x1=[1 1 11];
x2=[1 -1 -3];
[x,y] = system_solution(x1,x2);
assert(sum(abs(x-4))<1e-8)
assert(sum(abs(y-7))<1e-8)
|
5 | Fail |
x1=[2 1 8];
x2=[2 -1 4];
[x,y] = system_solution(x1,x2);
assert(sum(abs(x-3))<1e-8)
assert(sum(abs(y-2))<1e-8)
|
6 | Fail |
x1=[1 1 2];
x2=[1 -1 -2];
[x,y] = system_solution(x1,x2);
assert(sum(abs(x-0))<1e-8)
assert(sum(abs(y-2))<1e-8)
|
Make a random, non-repeating vector.
2795 Solvers
531 Solvers
188 Solvers
573 Solvers
Solving Quadratic Equations (Version 1)
427 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!