我有兩個向量(不同大小)在數據文件中帶有字符串。 我想找到每個這些向量中兩個(或更多)類似字符串的位置。 例如: -如何在matlab中查找兩個或多個存儲在兩個不同向量中的相等字符串
a=['str1', 'str2', 'str3', 'str4', 'str5', 'str6'];
b=['str3', 'str1', 'str4', 'str4'];
我要等的輸出:
b(1) corresponds to a(3)
b(2) corresponds to a(1)
b(3) corresponds to a(4)
b(4) corresponds to a(4)
這可能嗎?
輸出是「太多的投入」 – user3270686
你運行上述所有三個命令?什麼是你的Matlab版本? –
MATLAB Version 7.0.1.24704(R14)Service Pack 1,2004 – user3270686