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))
|
Return the largest number that is adjacent to a zero
3750 Solvers
Get the length of a given vector
3561 Solvers
Implement simple rotation cypher
943 Solvers
Change the sign of even index entries of the reversed vector
296 Solvers
Celsius to Fahrenheit converter
388 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!