??? Error using ==> eq Matrix dimensions must agree
显示 更早的评论
[row, column]=find(My_matrix== pnode); I try to use this command and i get this error
??? Error using ==> eq Matrix dimensions must agree
What should i do?How i should write the syntaxis of it?
3 个评论
Adam
2015-4-15
What are the dimensions of My_matrix and pnode? I assume they are not the same size since you get that error and in that case it is impossible for any of us to know what your intention is in trying to test equality between them just from the information you have given.
Giannakis Stoukas
2015-4-15
Giannakis Stoukas
2015-4-15
回答(1 个)
John D'Errico
2015-4-15
编辑:John D'Errico
2015-4-15
Your matrices are not compatible in size. READ THE ERROR MESSAGE!
Try this:
whos MY_matrix pnode
What does it tell you?
3 个评论
Giannakis Stoukas
2015-4-15
Giannakis Stoukas
2015-4-15
编辑:John D'Errico
2015-4-15
John D'Errico
2015-4-15
I see that the last line has
find(My_matrix==node);
Even if pnode is a scalar, node may well not be so, since it was created from a previous call to find.
类别
在 帮助中心 和 File Exchange 中查找有关 Statistics and Machine Learning Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!