필터 지우기
필터 지우기

Store arrays of different size in each for loop itertaion

조회 수: 2 (최근 30일)
Turbulence Analysis
Turbulence Analysis 2024년 4월 10일
편집: Matt J 2024년 4월 11일
Hi,
In the below script, I need to store the output kkkk into a new array but in the same column. Here, size of the kkkk is different during each itertaion.
I know that cell array would solve the issue. But I need to store them in the single colum.
for i=1:4
kkkk = find(A>=sz(i,1) & A<=sz(i,1)+100);
clear kkkk
end

채택된 답변

Matt J
Matt J 2024년 4월 10일
kkk=cell(4,1);
for i=1:4
kkkk{i} = find(A>=sz(i,1) & A<=sz(i,1)+100);
end
kkkk=vertcat(kkkk{:});
  댓글 수: 5
Turbulence Analysis
Turbulence Analysis 2024년 4월 11일
Hi Stephen,
I corrected the varibale name and preallocated the cell array correctly. Still the processing time is very large.
Matt J
Matt J 2024년 4월 11일
I corrected the varibale name and preallocated the cell array correctly. Still the processing time is very large.
If you profile the code, I think you will see that the bottleneck is coming from find(), not from anything else. It's an expensive function.

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

추가 답변 (1개)

Matt J
Matt J 2024년 4월 11일
편집: Matt J 2024년 4월 11일
b=sparse(sz(:,1)');
kkkk = nonzeros( (A(:)>=b & A(:)<=b+100).*(1:numel(A))' );
  댓글 수: 1
Turbulence Analysis
Turbulence Analysis 2024년 4월 11일
편집: Matt J 2024년 4월 11일
Hi,
This command leading to out of memory issue.
Requested 179528104x9700 (13288.7GB) array exceeds maximum array size
preference (15.4GB). This might cause MATLAB to become unresponsive.

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

카테고리

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