Efficient way of selecting columns of a matrix
조회 수: 1 (최근 30일)
이전 댓글 표시
Hello everybody,
I am quite new to Matlab and came to the following "problem".
During some for-loops I need to repeatingly select various columns of a matrix. For now I am doing it like this:
cy = cyclePosData(:, cyStart : cyEnd);
The matrix 'cyclePosData' usually has two rows and different number of rows depending on the iteration of the for-loops.
Throughout a method cointaining the for-loop there are multiple of these kind of operations. The line above is called approx. 120 000 times and takes 1.508s. Summed up, these lines with the similar operation take 3.883s. This is defenitely too long for my case.
Question: Is there a more efficient way in Matlab to select a part of a matrix (e.g. columns x to y)?
Thanks in advance for your help guys.
The code in some context:
for i = 1 : fcyLen - 1
cyEnd = fcyLen - 1;
cyStart = max(1, fcyLen - deltaLen - i + 1);
cy = cyclePosData(:, cyStart : cyEnd);
end
댓글 수: 3
Bob Thompson
2020년 1월 9일
Can you speak more to what kind of data you're getting (numeric, text, etc) and how you're doing your comparison? It seems like the solution might be in your actual comparison logic, rather than in the loop.
답변 (1개)
Stijn Haenen
2020년 1월 9일
You can get the data from different columns also in two (maybe more?) ways:
a=[1:10;11:20;21:30];
tic
for i=1:10000
a(:,7:10);
end
toc
tic
for i=1:10000
a(20:30);
end
toc
The second way is 2 to 3 times faster but you get the data in a single array. I dont know if this causes problems in your script.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Performance and Memory에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!