Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x=[1,2,3;0,4,5;1,0,6]
y_correct = [24 -12 -2;5 3 -5;-4 2 4]
assert(isequal(adjoint_mat(x),y_correct))
x =
1 2 3
0 4 5
1 0 6
y_correct =
24 -12 -2
5 3 -5
-4 2 4
y =
24 -12 -2
5 3 -5
-4 2 4
|
2 | Pass |
x=[1,7;2,0]
y_correct = [0 -7;-2 1]
assert(isequal(adjoint_mat(x),y_correct))
x =
1 7
2 0
y_correct =
0 -7
-2 1
y =
0 -7
-2 1
|
Make the vector [1 2 3 4 5 6 7 8 9 10]
35565 Solvers
Calculate the area of a triangle between three points
874 Solvers
3067 Solvers
323 Solvers
61 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!