Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
assessFunctionAbsence({'regexp','regexpi','regexprep','str2num'},'FileName','counter.m')
|
2 | Pass |
f = counter(0,1);
assert(isequal(f(),0))
assert(isequal(f(),1))
assert(isequal(2,f()))
assert(isequal(3,f()))
|
3 | Pass |
f = counter(1,0);
assert(isequal(f(),1))
assert(isequal(f(),1))
assert(isequal(1,f()))
assert(isequal(1,f()))
|
4 | Pass |
f = counter(10,2);
assert(isequal(f(),10))
assert(isequal(f(),12))
assert(isequal(14,f()))
assert(isequal(16,f()))
|
5 | Pass |
f = counter(0,5);
y_correct = [0, 5, 10, 15, 20, 55];
assert(isequal([f() f() f() f() f() f()+f()],y_correct))
|
6 | Pass |
x0 = randi(10);
b = randi(10);
f = counter(x0,b);
y_correct = x0 + (0:1000)*b;
assert(isequal(arrayfun(@(n)f(),0:1000),y_correct))
|
17210 Solvers
1398 Solvers
519 Solvers
Calculate the Number of Sign Changes in a Row Vector (No Element Is Zero)
225 Solvers
Remove element(s) from cell array
372 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!