Effacer les filtres
Effacer les filtres

Info

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

how can i compare beteween two elements the first is cell and the second vector or class double in matlab?

1 vue (au cours des 30 derniers jours)
Mira le
Mira le le 29 Oct 2019
Clôturé : MATLAB Answer Bot le 20 Août 2021
Example:
S= {1 2 }
q= [ 1 2 3]
how compare each element of q exisit in S?

Réponses (1)

Walter Roberson
Walter Roberson le 29 Oct 2019
In the special case where each entry in S is a scalar, then
ismember(q,cell2mat(S))
If that is not the case, if S entries can be non-scalars, then you need to define what it means for there to be a match. For example, if S = {[1 2], 3} then should entries 1 and 2 match because they are somewhere in S, or should only 3 match because it is exactly the same as an entry in S ?

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