Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y = 1;
z_correct = 6.28;
assert(isequal(Circumference(x,y),z_correct))
|
2 | Pass |
x=2
y=4
z_correct=50.272
assert(isequal(Circumference(x,y),z_correct))
x =
2
y =
4
z_correct =
50.2720
|
3 | Pass |
x=0
y=0
z_correct=0
assert(isequal(Circumference(x,y),z_correct))
x =
0
y =
0
z_correct =
0
|
4 | Pass |
x=0
y=1
z_correct=0
assert(isequal(Circumference(x,y),z_correct))
x =
0
y =
1
z_correct =
0
|
9868 Solvers
1962 Solvers
270 Solvers
Deleting an element in a matrix
325 Solvers
Replace every 3rd element in a vector with 4
170 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!