Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
r = 2;
y_correct = 16;
assert(isequal(area_sqr(r),y_correct))
ans =
16
|
2 | Pass |
r = 3;
y_correct = 36;
assert(isequal(area_sqr(r),y_correct))
ans =
36
|
3 | Pass |
r = 25;
y_correct = 2500;
assert(isequal(area_sqr(r),y_correct))
ans =
2500
|
420 Solvers
Create a two dimensional zero matrix
354 Solvers
What is Sum Of all elements of Matrix
292 Solvers
Deleting an element in a matrix
325 Solvers
509 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!