how can make a matrix from many vectors?
Show older comments
how can make a matrix from many vectors?
3 Comments
sixwwwwww
on 18 Oct 2013
Are all the vectors of same length?
Azzi Abdelmalek
on 18 Oct 2013
You should precise column vectors or row vectors?
fatemeh
on 18 Oct 2013
Answers (3)
vaishali
on 18 Oct 2013
1 vote
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
1 Comment
Azzi Abdelmalek
on 18 Oct 2013
or vertcat
Jos (10584)
on 18 Oct 2013
Edited: Jos (10584)
on 18 Oct 2013
1 vote
Azzi Abdelmalek
on 18 Oct 2013
out=[A1;A2;A3;...]
1 Comment
Azzi Abdelmalek
on 18 Oct 2013
Edited: Azzi Abdelmalek
on 18 Oct 2013
out=zeros(1000,2) % Pre-allocate
for k=1:1000
out(k,:)=... % your calculations
end
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!