Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
A=[96.4889 95.7167 14.1886
15.7613 48.5376 42.1761
97.0593 80.0280 91.5736];
b=[ 206.3942
106.4750
268.6609];
y_correct = [1; 1; 1];
assert(isequal(my_lin_solv(A,b),y_correct))
|
2 | Pass |
%%
A=[97 96 15
16 49 43
98 81 92];
b=[ 587
480
1083];
y_correct = [2; 3; 7];
assert(isequal(my_lin_solv(A,b),y_correct))
|
Determine whether a vector is monotonically increasing
11915 Solvers
Vectorize the digits of an Integer
269 Solvers
338 Solvers
130 Solvers
241 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!