Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
A = [2 3; 3 4]; b = [23; 32];
x_correct = [4;5];
assert(isequal(solveSimul(A,b),x_correct))
|
2 | Pass |
A = [2 3; 3 4]; b = [23; 36];
x_correct = [16;-3];
assert(isequal(solveSimul(A,b),x_correct))
|
3 | Pass |
A = [2 3; 3 4]; b = [23; 43];
x_correct = [37;-17];
assert(isequal(solveSimul(A,b),x_correct))
|
4 | Pass |
A = [2 3; 3 4]; b = [23; 49];
x_correct = [55;-29];
assert(isequal(solveSimul(A,b),x_correct))
|
381 Solvers
220 Solvers
middleAsColumn: Return all but first and last element as a column vector
387 Solvers
The sum of the numbers in the vector
426 Solvers
07 - Common functions and indexing 5
314 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!