Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [2 1 3; 1 1 2];
y_correct = x(:,1:end-1)\x(:,end);
assert(isequal(solvesystem(x),y_correct))
|
2 | Pass |
x = [1 1 0; 1 -1 0];
y_correct = x(:,1:end-1)\x(:,end);
assert(isequal(solvesystem(x),y_correct))
|
Back to basics 12 - Input Arguments
525 Solvers
323 Solvers
Is this triangle right-angled?
2394 Solvers
353 Solvers
241 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!