This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 9;
y_correct = (sqrt((x^2)/3))^3;
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Pass |
x = 3;
y_correct = (sqrt((x^2)/3))^3;
assert(isequal(your_fcn_name(x),y_correct))
|
3 | Pass |
x = 2;
y_correct = (sqrt((x^2)/3))^3;
assert(isequal(your_fcn_name(x),y_correct))
|
Return the 3n+1 sequence for n
6167 Solvers
Number of 1s in a binary string
2818 Solvers
Split a string into chunks of specified length
475 Solvers
2538 Solvers
327 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!