Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1.0000 0.9825
0.9825 1.0000];
y_correct = [0.9825] ;
assert(isequal(coeffMat2Vec(x),y_correct))
|
2 | Pass |
x = [1.0000 0.9999 0.9827
0.9999 1.0000 0.9825
0.9827 0.9825 1.0000];
y_correct = [0.9999 0.9827 0.9825] ;
assert(isequal(coeffMat2Vec(x),y_correct))
|
3 | Fail |
x = [1.0000 0.9797 0.9797 0.9806
0.9797 1.0000 0.9971 0.9984
0.9797 0.9971 1.0000 0.9983
0.9806 0.9984 0.9983 1.0000];
y_correct = [0.9797 0.9797 0.9806 0.9971 0.9984 0.9983] ;
assert(isequal(coeffMat2Vec(x),y_correct))
|
4 | Fail |
x = [ 1.0000 0.9815 0.9984 0.9962 0.9981
0.9815 1.0000 0.9822 0.9804 0.9820
0.9984 0.9822 1.0000 0.9994 1.0000
0.9962 0.9804 0.9994 1.0000 0.9996
0.9981 0.9820 1.0000 0.9996 1.0000];
y_correct = [ 0.9815 0.9984 0.9962 0.9981 0.9822 0.9804 0.9820 0.9994 1.0000 0.9996] ;
assert(isequal(coeffMat2Vec(x),y_correct))
|
Replace NaNs with the number that appears to its left in the row.
1712 Solvers
Back to basics 6 - Column Vector
809 Solvers
Determine the number of odd integers in a vector
322 Solvers
288 Solvers
311 Solvers