Compare 2 string documents

4 vues (au cours des 30 derniers jours)
flashpode
flashpode le 14 Juil 2021
Hi, I want to compare 2 strings and see if there are messages that are the same. i want to compare de first line with all the others from the other document and put it in to another string. The string are AIS1 19000 X 1 and AIS2 13000 X 1.
I've coded a little bit but i have an error of matrix dimensions must agree.
M_conjunt = [];
M_D_AIS1 = [];
M_D_AIS2 = [];
N=size(AIS1,1)
P=size(AIS2,1)
for i=1:1:N
for j=1:1:P
seq1=AIS1(i);
seq2=AIS2(j);
linia1=convertStringsToChars(seq1);
linia2=convertStringsToChars(seq2);
if AIS1 == AIS2
M_conjunt = [M_conjunt,i];
end
end
end
I do not undestand why do I continue getting this problem
  3 commentaires
flashpode
flashpode le 14 Juil 2021
My output is M_conjunt if it repeats and if it not repeats M_D_AIS1 for messages in AIS1 and M_D_AIS2 for messages in AIS2.
David Hill
David Hill le 14 Juil 2021
Show us an example of your output based on your input.

Connectez-vous pour commenter.

Réponses (1)

Sulaymon Eshkabilov
Sulaymon Eshkabilov le 14 Juil 2021
The err is here:
if AIS1 == AIS2 % ERR
% Corrected one:
if AIS1(i) == AIS2(i)
Note that sizes of AIS1 and AIS2 are to match.

Catégories

En savoir plus sur Dialog Boxes dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by