??? Error using ==> eq Matrix dimensions must agree

2 次查看(过去 30 天)
[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 个评论
Giannakis Stoukas
Giannakis Stoukas 2015-4-15
pnode is a variable and it has a value and the matrix has dimensions 10X14,this is why it is weird
Giannakis Stoukas
Giannakis Stoukas 2015-4-15
Actually the previous orders are min_cost = min(x(:)); [pnode, node] = find(x == min_cost); [row, column]=find(My_matrix == pnode); [rows, columns]=find(My_matrix==node);
and the min_cost instead of taking one value it takes an array

请先登录,再进行评论。

回答(1 个)

John D'Errico
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
Giannakis Stoukas 2015-4-15
编辑:John D'Errico 2015-4-15
Actually the previous orders are
min_cost = min(x(:));
[pnode, node] = find(x == min_cost);
[row, column]=find(My_matrix == pnode);
[rows, columns]=find(My_matrix==node);
and the min_cost instead of taking one value it takes an array
John D'Errico
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.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 String Parsing 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by