Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
r = 2;
y_correct = 16;
assert(isequal(area_sqr(r),y_correct))
A =
4
|
2 | Fail |
r = 3;
y_correct = 36;
assert(isequal(area_sqr(r),y_correct))
A =
9
|
3 | Fail |
r = 25;
y_correct = 2500;
assert(isequal(area_sqr(r),y_correct))
A =
625
|
Return the 3n+1 sequence for n
6167 Solvers
Generate N equally spaced intervals between -L and L
563 Solvers
Replace multiples of 5 with NaN
358 Solvers
489 Solvers
Find Out sum of principal diagonal element of given matrix
194 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!