Help with comparing strings from cells
2 次查看(过去 30 天)
显示 更早的评论
Why does this come out as false?
>> A{1,5}
ans =
1×1 cell array
{'FIRING'}
>> isequal(A{1,5},'FIRING')
ans =
logical
0
1 个评论
Stephen23
2023-7-19
"Why does this come out as false?"
Note the difference:
{'Hello'} % what you actually have
'Hello' % what you think you have
You have nested cell arrays, so even after curly brace indexing into the outer cell array you still have the innner cell array.
采纳的回答
Fangjun Jiang
2023-7-19
编辑:Fangjun Jiang
2023-7-19
A{1,5} itself is a cell. Do the following
class(A{1,5})
isequal(char(A{1,5}),'FIRING')
A{1,5}{1}
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Whos 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!