replace column
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
How to replace a column with ones in a image containing rows and coulumns with zeros.
0 comentarios
Respuesta aceptada
Matt Fig
el 21 de Mayo de 2011
% 2D example:
A = zeros(5)
A(:,3) = 1
% 3D example:
A = zeros(3,3,3)
A(:,2,:) = 1
Más respuestas (0)
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!