Using for loop to extract data from a matrix

조회 수: 2 (최근 30일)
Brendan Görres
Brendan Görres 2020년 10월 3일
댓글: Brendan Görres 2020년 10월 3일
I am trying to etract certain data from a matrix into a single row vector with the length of the vector depending on the number of elements in the atrix.
So for example I extracted successfully the element numbers that represents one building component with the following code:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%Assign Elements to part Cavity
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
groupc=strfind(aName,'Cavity');
tf= cellfun('isempty',groupc); %tf gives 1, if cell contains []
for i=1:length(tf) %converts [] to 0
if tf(i)==1
groupc(i)={0};
end
end
groupc=cell2mat(groupc);
combic= [aElements,groupc]; %aElements is defined as a cell array containing all existing Element number of the whole building model
cavity= ones(length(aElements),1);
n=1;
for j=1:length(aElements)
if combic(j,groupc(j)==1)
cavity(n)=combic(j,1);
n=n+1;
end
end
The result "cavity" I get is attached to this question. What I want is the loop to stop, before filling out the rows with "1" and give out a vector that has the length of the number of elements that belong to one part (in this case to the part cavity). How can I do that?
  댓글 수: 2
madhan ravi
madhan ravi 2020년 10월 3일
편집: madhan ravi 2020년 10월 3일
Your question isn't clear, what ones? You already preallocate cavity with ones? Instead of posting a random picture why not illustrate with a short example with the desired result?
cell_array = {[]; 4646; 3883; 0}
desired_result = % ??
Brendan Görres
Brendan Görres 2020년 10월 3일
the problem was the preallocation. I missed that.

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

채택된 답변

Abdolkarim Mohammadi
Abdolkarim Mohammadi 2020년 10월 3일
The break statement terminates the for loop:
if j > numel(cavity)
break
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by