Problem 1421. subtract central cross
Solution Stats
Problem Comments
Solution Comments
-
1 Comment
Soobok
on 4 Nov 2020
function y = central_cross(x)
[a b]=size(x);
x((1+a)/2,:)=[];
x(:,(1+a)/2)=[];
y=x
end
Problem Recent Solvers349
Suggested Problems
-
Find the largest value in the 3D matrix
1234 Solvers
-
Simple equation: Annual salary
4000 Solvers
-
226 Solvers
-
Solve a System of Linear Equations
7337 Solvers
-
5910 Solvers
More from this Author11
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!