필터 지우기
필터 지우기

How to create a vector?

조회 수: 2 (최근 30일)
Sim
Sim 2012년 10월 16일
Hello everyone, Suppose with a for loop I get an array for each file (array could be of different lengths for each file). I want to get a column vector which will be merging of these arrays. So all the values of arrays from each file will be in this huge vector. Thank you for you help in advance.

채택된 답변

Babak
Babak 2012년 10월 16일
편집: Babak 2012년 10월 16일
vector=[];
for j=1:n
% find newone that comes from file(j)
vector = [vector , newone]
end
  댓글 수: 2
Sim
Sim 2012년 10월 16일
Thank you veru much
Matt Kindig
Matt Kindig 2012년 10월 16일
Keep in mind that if this is a "huge vector", then it might be rather slow due to a lack of memory pre-allocation. I would recommend something like this:
% vector is output from file(j)
r = size(vector,1);
Vector = NaN(r,n); %this is the pre-allocation step-- very important for memory management/efficiency!
Vector(:,1)=vector;
for j=2:n,
%newone comes from file(j)
Vector(:,j) = newone;
end

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by