Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3; 4 5 10; 7 8 9];
y_correct = [1 2 3; 4 1 10; 7 8 9];
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Pass |
x = [1 2 3 4 5];
y_correct = [1 2 -9 4 5];
assert(isequal(your_fcn_name(x),y_correct))
|
3 | Pass |
x = [1; 2; 3; 4; 5];
y_correct = [1; 2; 15; 4; 5];
assert(isequal(your_fcn_name(x),y_correct))
|
Select every other element of a vector
20337 Solvers
Increment a number, given its digits
562 Solvers
Replace multiples of 5 with NaN
358 Solvers
273 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!