This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%% test 1
A = [2 3; 3 4]; b = [23; 32];
x_correct = [4;5];
assert(isequal(solveSimul(A,b),x_correct))
x =
4
5
|
2 | Pass |
%% test 2
A = [2 3; 3 4]; b = [23; 36];
x_correct = [16;-3];
assert(isequal(solveSimul(A,b),x_correct))
x =
16
-3
|
9831 Solvers
Find the peak 3n+1 sequence value
1107 Solvers
462 Solvers
07 - Common functions and indexing 4
319 Solvers
358 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!