error using find: Matrix dimensions must agree

comms is a matrix and nb is a vector with different dimensions.
[nb_comms,~]=find(comms==nb);
error: Error using == Matrix dimensions must agree.

Antworten (1)

Star Strider
Star Strider am 22 Apr. 2016

1 Stimme

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 Kommentar

Siamak comments to Star Strider:
Thank you so much for your helpful answer

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu RF Toolbox finden Sie in Hilfe-Center und File Exchange

Tags

Gefragt:

am 22 Apr. 2016

Kommentiert:

am 22 Mai 2017

Community Treasure Hunt

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

Start Hunting!

Translated by