Is it another command using to compare between vector and cell?

조회 수: 1 (최근 30일)
Mira le
Mira le 2019년 10월 30일
댓글: Mira le 2019년 10월 30일
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
Mira le
Mira le 2019년 10월 30일
U is a vector
U = [1 2 3]
S = { 1 2 }
Mira le
Mira le 2019년 10월 30일
I ant to check each element of U exist in S, we notice that U is vector and S a cell

댓글을 달려면 로그인하십시오.

채택된 답변

Alex Mcaulley
Alex Mcaulley 2019년 10월 30일
Then, to obtain the elements of U that doesn't exist in S, you can do:
U = [1,2,3];
S = {1,2};
w = U(~ismember(U,cell2mat(S)))

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Genetic Algorithm에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by