Cell array and num2str comparison
2 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I want to know the diiference in the attacehd image, ass well i would like to know how to convert [] to '' the strcamp will work well.
groupName = [11,12];
a = num2cell(groupName)
c = {'42', '12'}
rows = strcmp(a,c)
thanks,
Nadav

0 件のコメント
採用された回答
Jan
2022 年 9 月 11 日
The variable a is a cell array containing 2 scalar numbers, while b contains 2 CHAR vectors.
a = {42, 12}
c = {'42', '12'}
The square brackets are shown in the command window only an converting them to quotes is not meaningful.
There are many ways to compare the two cell arrays:
a1 = [a{:}];
c1 = str2double(c)
a1 == c1
or
a2 = sprintfc('%d', [a{:}])
strcmp(a2, c)
0 件のコメント
その他の回答 (1 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!