MATRIX DIMENSIONS MUST AGREE error while input strings/char
显示 更早的评论
for i = 1:x
for j = 1:y
if (A{i} ~= B{j})
temp{idx} = B{j};
i = (idx + 1);
end
end
end
A{i} is an array filled with chars
B{j} is also an array filed with chars
When running the program, it won't compare at if (A{i} ~= B{j}) and gives the MATRIX DIMENSIONS MUST AGREE error.
How can I fix this?
回答(1 个)
Alex Mcaulley
2019-2-26
0 个投票
Use ~strcmp(A{i},B{j}) instead of A{i} ~= B{j}
类别
在 帮助中心 和 File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!