How to replace the elements of a matrix with another matrices

3 Ansichten (letzte 30 Tage)
S
S am 13 Jan. 2014
Kommentiert: S am 13 Jan. 2014
Hi all,
How to replace the elements of a matrix with another matrices in one go with just a command?
for example: A = zeros(4,16) I want to replace the rows of A with the following matrices:
b=[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]
c=[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2]
d=[3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3]
e=[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4]
Thanks for your help.
Best wishes, S:-)

Akzeptierte Antwort

Image Analyst
Image Analyst am 13 Jan. 2014
Bearbeitet: Image Analyst am 13 Jan. 2014
Try this:
A = [b;c;d;e]

Weitere Antworten (1)

Azzi Abdelmalek
Azzi Abdelmalek am 13 Jan. 2014
repmat((1:4)',1,16)
  1 Kommentar
S
S am 13 Jan. 2014
Thanks for your quick reply Azzi. But matrices b to e are just examples here, and in my case they do not have such a simple elements. Thanks anyway:)

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Shifting and Sorting Matrices 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!

Translated by