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 Solvers356
Suggested Problems
-
1205 Solvers
-
Remove the two elements next to NaN value
520 Solvers
-
Given a matrix, swap the 2nd & 3rd columns
751 Solvers
-
297 Solvers
-
393 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!