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
|
231 Solvers
Back to basics 23 - Triangular matrix
532 Solvers
Are all the three given point in the same line?
197 Solvers
437 Solvers
367 Solvers