Reshape the vector as indexed matrix.

조회 수: 3 (최근 30일)
Sangeetha R
Sangeetha R 2020년 3월 6일
편집: Sangeetha R 2020년 3월 10일
I need to reshape each row vector in 'x' to the 2D matrix as indexed in 'idx'. I have written the code and working fine. But it takes more time as the number of rows in x is high. Is there any way to reduce the execution time?
x=ones(4732,28000);
idx = buffer(1:28000,10,5,'nodelay');
tic
for i=1:4732
x1=x(i,:);
y=x1(idx);
end
toc
Elapsed time is 1.450427 seconds.

답변 (1개)

Alex Mcaulley
Alex Mcaulley 2020년 3월 6일
Yes, just removing the for loop because this loop doesn't do anything in your code.

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by