given a matrix, set all elements with row and/or column numbers of 2 to end-1 equal to zero:
x = ones(3);
y_correct = [1 1 1;1 0 1;1 1 1];
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers56
Suggested Problems
-
Project Euler: Problem 2, Sum of even Fibonacci
2822 Solvers
-
16295 Solvers
-
Sum the numbers on the main diagonal
612 Solvers
-
Replace every 3rd element in a vector with 4
263 Solvers
-
find whether it is prime or not
155 Solvers
More from this Author29
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
The problem description should be set all numbers that are not on a border to zero.