This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a=2;b=2;c=8;
y_correct = 100;
assert(isequal(ellipsoid_sphere_diff(a,b,c),y_correct))
ans =
100
|
2 | Pass |
%%
a=4;b=4;c=4;
y_correct =0;
assert(isequal(ellipsoid_sphere_diff(a,b,c),y_correct))
ans =
0
|
3 | Pass |
%%
a=3;b=5;c=8;
y_correct= 389;
assert(isequal(ellipsoid_sphere_diff(a,b,c),y_correct))
ans =
389
|
4 | Pass |
%%
a=4;b=6;c=8;
y_correct=536;
assert(isequal(ellipsoid_sphere_diff(a,b,c),y_correct))
ans =
536
|
1047 Solvers
Create a matrix X, where each column is a shifted copy of the vector v
116 Solvers
Given a matrix, return the last eigen value
138 Solvers
152 Solvers
264 Solvers