MATLAB: “Error using horzcat Dimensions of matrices being concatenated are not consistent.”

horzcatmatrix manipulation

Hello,
Actually, I have a file.m that I want to execute with my parameters. I got the error: "Error using horzcat Dimensions of matrices being concatenated are not consistent."
I joined in attachement the code of the function that I want to test and the .txt files of my parameters. Here is the code that I wanted to run:
b=load('karate_adj.txt')
b1=b(1:34,:)
c1=load('Evidential_Attributes_karate.txt')
kk = LinkFCMm([c1, b1, 'euclidean', 100, 1])
Can you please tel me where is the problem? Thank you

Best Answer

Remove the [] in the kk line.