This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1;
y = 4*pi()/3;
z = 4*pi();
[a,b]=sphere(x);
assert(isequal(a,y)&isequal(b,z))
ans =
[]
|
2 | Pass |
%%
x = 4;
y = 256*pi()/3;
z = 64*pi();
[a,b]=sphere(x);
assert(isequal(a,y)&isequal(b,z))
ans =
[]
|
Determine whether a vector is monotonically increasing
9261 Solvers
1610 Solvers
Find the "ordinary" or Euclidean distance between A and Z
119 Solvers
579 Solvers
Given a 4x4 matrix, swap the two middle columns
299 Solvers