This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [ 1 2 3 4 5 1 2 4 6];
n=3;
y_correct = [ 3 3 3 4 5 3 3 4 6];
assert(isequal(your_fcn_name(x,n),y_correct))
|
2 | Pass |
%%
x= [ -1 0 1 1 -100 1000 2 6];
n=1;
y_correct = [ 1 1 1 1 1 1000 2 6];
assert(isequal(your_fcn_name(x,n),y_correct))
|
3 | Pass |
%%
x= [ 1 2 3 4 Inf -Inf 6];
n=3;
y_correct = [3 3 3 4 Inf 3 6];
assert(isequal(your_fcn_name(x,n),y_correct))
|
242 Solvers
Generate a random matrix A of (1,-1)
211 Solvers
583 Solvers
Find out total non zero element of matrix
194 Solvers
193 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!