how can make a matrix from many vectors?

7 Ansichten (letzte 30 Tage)
fatemeh
fatemeh am 18 Okt. 2013
Kommentiert: Azzi Abdelmalek am 18 Okt. 2013
how can make a matrix from many vectors?
  3 Kommentare
Azzi Abdelmalek
Azzi Abdelmalek am 18 Okt. 2013
You should precise column vectors or row vectors?
fatemeh
fatemeh am 18 Okt. 2013
yes row vectors with same size 1*2,actually i have a for loop and it each time produce a vector with size 1*2 ,i want save this vector each time to a matrix

Melden Sie sich an, um zu kommentieren.

Antworten (3)

vaishali
vaishali am 18 Okt. 2013
C = horzcat(A1, A2, ...) horizontally concatenates matrices A1, A2, and so on. All matrices in the argument list must have the same number of rows

Jos (10584)
Jos (10584) am 18 Okt. 2013
Bearbeitet: Jos (10584) am 18 Okt. 2013
... and if the vectors are not of the same lengths, you can use PADCAT

Azzi Abdelmalek
Azzi Abdelmalek am 18 Okt. 2013
out=[A1;A2;A3;...]
  1 Kommentar
Azzi Abdelmalek
Azzi Abdelmalek am 18 Okt. 2013
Bearbeitet: Azzi Abdelmalek am 18 Okt. 2013
out=zeros(1000,2) % Pre-allocate
for k=1:1000
out(k,:)=... % your calculations
end

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Creating and Concatenating 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