Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x = rrm;
assert(x>0)
assert(x/2==0)
|
2 | Fail |
x = rrm*[1:10]/2/rrm;
x_correct = [0 1 2 2 2 3 4 4 4 5];
assert(isequal(x,x_correct))
|
3 | Fail |
x = rrm*[2:16]/3/rrm;
x_correct = kron(1:5,ones(1,3));
assert(isequal(x,x_correct))
|
4 | Fail |
% return A022852 sequence - integer nearest n*e - without 'round':
n = 1:17;
x = rrm*n*exp(1)/rrm;
x_correct = [3 5 8 11 14 16 19 22 24 27 30 33 35 38 41 43 46];
assert(isequal(x,x_correct))
|
337 Solvers
3967 Solvers
Determine if input is a perfect number
145 Solvers
Create matrix of replicated elements
321 Solvers
4999 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!