필터 지우기
필터 지우기

counting the number of values in table if the condition satisfies??

조회 수: 23 (최근 30일)
Haritha
Haritha 2019년 3월 27일
댓글: Guillaume 2019년 3월 28일
Hi,
I have 2 tables as
a =
y=
If the string in "y" matches with string in ''a'' i want to count all the strings after matching the strings.
I am looking for looping only not like count command.
Thanks in advance
  댓글 수: 9
Haritha
Haritha 2019년 3월 27일
편집: Haritha 2019년 3월 27일
I have attached sample code. If string in U matches with string in xx I want to count the strings after matching string in xx. I have only one column as xx
Guillaume
Guillaume 2019년 3월 27일
편집: Guillaume 2019년 3월 27일
Why is U a table as opposed to the simpler
U = 'car';
?
Why is xx a table as opposed to simply a cell array?
You don't seem to know how to index cell arrays, tables or matrices. If A is matrix, A{i} is an error.
So in your example, is the desired result 4? (4 strings after 'car')

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

채택된 답변

dpb
dpb 2019년 3월 27일
xx = categorical({'computer'; 'car'; 'mobile'; 'bus'; 'tree'; 'jeep'});
u='car';
[ia,ib]=ismember(u,xx);
if ia
count=numel(xx)-2+1; % inclusive count
else
count=nan; % not found indicator
end
tables unnecessarily complicate life when they really have no useful reason for using them in a given case.
Using categorical for such variables simplilfies comparisons greatly; that's what they're for.
Above for a one-at-a-time lookup, loop over an array of u if needed...
  댓글 수: 2
Haritha
Haritha 2019년 3월 28일
Ok Finally i will change it to cell array then i will use this other than table matching cells matching is fine
Guillaume
Guillaume 2019년 3월 28일
That count line should be:
count = numel(XX) - in + 1;
However, you could just replace the whole lot by:
count = numel(XX) - find(u == XX, 1);
In the above case, there's no benefit to using categorical. You could just stick to a cell array, in which case you replace the == by strcmp

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

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by