Info

此问题已关闭。 请重新打开它进行编辑或回答。

Undefined operator '-' for input arguments of type 'cell'.

1 次查看(过去 30 天)
for(i=1:size(Ftrain,1))
dist(1,:)=sum(abs(Ftrain(1,:) - Ftest));
end

回答(1 个)

Image Analyst
Image Analyst 2018-11-4
编辑:Image Analyst 2018-11-5
You can't subtract cells. You can subtract the contents of cell if they are numeric. So you need to use braces. See the FAQ: https://matlab.wikia.com/wiki/FAQ#What_is_a_cell_array.3F
Try it this way:
for(i=1:size(Ftrain,1))
dist(1,:)=sum(abs(Ftrain{i,:} - Ftest));
end
Ftest must be of the same type as the contents of the cell, e.g. both doubles.
  3 个评论
mayur sonawale
mayur sonawale 2018-11-5
my Ftrain is 5*2cell and Ftest is like [105.2527,42.8721]
Image Analyst
Image Analyst 2018-11-5
编辑:Image Analyst 2018-11-5
But what's IN the cell? Inside each cell should also be a 1-by-2 vector. and you need to specify both row and column. Like this
thisCellsContents = Ftrain{i, someColumnNumber}
dist(i,someColumnNumber=sum(abs(thisCellsContents - Ftest));
Perhaps you need another inner loop over column.
Attach Ftrain and Ftest in a .mat file if you still need more help so I don't waste time guessing.

此问题已关闭。

Community Treasure Hunt

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

Start Hunting!

Translated by