すべてが'else'になる
이전 댓글 표시
現在、if文を使用して条件づけを行い、分岐させています。
しかし、どの条件でもelseの分岐'偽'になってしまいます。
試しに、if-else-endを消して実行すると'真'に分岐します。
こうした時、何が原因となっているのでしょうか
%moziは22×1のcell
%辞書の読み込み
jisho = readtable('dictionary.xlsx','ReadRowNames',true);
Chushutumoji=moji{1,1};
%条件分岐
if sum(categorical(true) == Chushutumoji)
Shoukai = jisho(Chushutumoji,:);
disp(Shoukai)
else
disp('False')
end
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 table에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!