replace column
1 view (last 30 days)
Show older comments
How to replace a column with ones in a image containing rows and coulumns with zeros.
0 Comments
Accepted Answer
Matt Fig
on 21 May 2011
% 2D example:
A = zeros(5)
A(:,3) = 1
% 3D example:
A = zeros(3,3,3)
A(:,2,:) = 1
More Answers (0)
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!