Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

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

1 vue (au cours des 30 derniers jours)
mayur sonawale
mayur sonawale le 4 Nov 2018
Clôturé : MATLAB Answer Bot le 20 Août 2021
for(i=1:size(Ftrain,1))
dist(1,:)=sum(abs(Ftrain(1,:) - Ftest));
end

Réponses (1)

Image Analyst
Image Analyst le 4 Nov 2018
Modifié(e) : Image Analyst le 5 Nov 2018
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 commentaires
mayur sonawale
mayur sonawale le 5 Nov 2018
my Ftrain is 5*2cell and Ftest is like [105.2527,42.8721]
Image Analyst
Image Analyst le 5 Nov 2018
Modifié(e) : Image Analyst le 5 Nov 2018
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.

Cette question est clôturée.

Community Treasure Hunt

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

Start Hunting!

Translated by