How to add constant values above and below of each columns of a matrix?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Nisar Ahmed
el 4 de Nov. de 2022
Comentada: John D'Errico
el 6 de Nov. de 2022
Hello,
I have a matrix say VP of size 100 * 106 and I want to add 50 constant values above and 50 values belowhis matrix (50 values on each column above and below) . How can I do it?
0 comentarios
Respuesta aceptada
Kevin Holly
el 4 de Nov. de 2022
VP = rand(100,106);
extra50 = rand(50,106);
NewVP = [extra50;VP;extra50];
size(VP)
size(NewVP)
2 comentarios
John D'Errico
el 6 de Nov. de 2022
extra50 = repmat(pi,50,106);
or
extra50 = pi*ones(50,106);
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!