Is it another command using to compare between vector and cell?
Mostrar comentarios más antiguos
I have this code bellow: when U = [] and has value after , S also the same initila by S = {},
I use IsContainedIn to compare between each value fo U and S, but it doesn't work, an error appear : "Input A of class double and input B of class cell must be cell arrays of character vectors, unless one is a character vector."
Could you please help me I 'm stuck in this step
for i=1:numel(U)
if ~IsContainedIn(U(i),S{p})
w1 = [w1 U(i)];
end
end
Thanks
6 comentarios
Daniel M
el 30 de Oct. de 2019
Is IsContainedIn a native MATLAB function? I'm having trouble finding it.
Mira le
el 30 de Oct. de 2019
Daniel M
el 30 de Oct. de 2019
Right. Well, I'm not sure what you're storing in U and S, but have a look at ismember and strcmp
Alex Mcaulley
el 30 de Oct. de 2019
What is the content of S and U? Are you trying to merge S and U without repetitions?
Mira le
el 30 de Oct. de 2019
Mira le
el 30 de Oct. de 2019
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Genetic Algorithm en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!