How to add constant values above and below of each columns of a matrix?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Nisar Ahmed
am 4 Nov. 2022
Kommentiert: John D'Errico
am 6 Nov. 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 Kommentare
Akzeptierte Antwort
Kevin Holly
am 4 Nov. 2022
VP = rand(100,106);
extra50 = rand(50,106);
NewVP = [extra50;VP;extra50];
size(VP)
size(NewVP)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!