Trying to predict equality between cell arrays
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Mahendran Subramanian
el 3 de Oct. de 2019
Comentada: Mahendran Subramanian
el 3 de Oct. de 2019
I have two cell arrays A and B
A 400 x 1 cell
{1 x 5 categorical
1 x 5 categorical
1 x 5 categorical
.......}
B 400 x 1 cell
{1 x 5 categorical
1 x 5 categorical
1 x 5 categorical
.......}
I tried to do
C = sum(B == A)./numel(A)
And I am getting the following error
Undefined operator '==' for input arguments of type 'cell'.
Then I tried the following
C = sum(B{:} == A{:})./numel(A{:})
And I am getting the folowing error
Error using ==
Too many input arguments.
0 comentarios
Respuestas (1)
David Hill
el 3 de Oct. de 2019
If you are just testing equality between the whole cells use:
isequal(A,B);
Ver también
Categorías
Más información sobre Categorical Arrays en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!