필터 지우기
필터 지우기

can i compare two cell array with double and string value?

조회 수: 8 (최근 30일)
fatemeh
fatemeh 2013년 12월 22일
답변: Walter Roberson 2013년 12월 24일
i have a 303*14 dataset i want compare every raw of this dataset with a 1*14 vector
this dataset has double and string values but the vector just has string values in fact i want compare string values with double values!
  댓글 수: 2
Azzi Abdelmalek
Azzi Abdelmalek 2013년 12월 22일
How to compare double with string? Can you provide a short example: a 3x4 cell array fo example.
dpb
dpb 2013년 12월 22일
편집: dpb 2013년 12월 22일
Sotoo
>> c={'abc';2;'xyz'}; % some trivial data set
>> ismember({c{cellfun(@ischar,c)}}','xyz')
ans =
0
1
>>
maybe? Salt to suit for vectors, of course...
Now how to compare the doubles to strings -- for what definition of compare? If the strings are numeric representations then simplest would be to convert to numeric value w/ str2dble or the like and then do the comparison. Or, go the t'other way 'round and convert the doubles to character representation with appropriate number of significant digits and do the comparison in that domain.
Either way, as Azzi points out you'll need to define what it is you actually mean first...

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

답변 (1개)

Walter Roberson
Walter Roberson 2013년 12월 24일
row_is_the_same = arrayfun( @(rownum) isequal( YourDataset(rownum,:), TheVectorToCompareTo), 1:size(YourDataset,1));
The answer will be false for every row since a number is not the same as a string, but you didn't ask us for advice about dealing with that.

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by