Effacer les filtres
Effacer les filtres

error using find: Matrix dimensions must agree

1 vue (au cours des 30 derniers jours)
Jack Ie
Jack Ie le 22 Avr 2016
Commenté : Walter Roberson le 22 Mai 2017
comms is a matrix and nb is a vector with different dimensions.
[nb_comms,~]=find(comms==nb);
error: Error using == Matrix dimensions must agree.

Réponses (1)

Star Strider
Star Strider le 22 Avr 2016
I am not certain what you are doing. See if the intersect or related functions do what you want.
Example:
comms = randi(99, 1, 50);
nb = randi(50, 1, 10);
[nb_comms, idx_comms, idx_nb] = intersect(comms,nb);
  1 commentaire
Walter Roberson
Walter Roberson le 22 Mai 2017
Siamak comments to Star Strider:
Thank you so much for your helpful answer

Connectez-vous pour commenter.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by