Error using horzcat Dimensions of matrices being concatenated are not consistent.

2 visualizaciones (últimos 30 días)
Error using horzcat
Dimensions of matrices being concatenated are not consistent.
Error in tvf_emd (line 51)
y = [fliplr(y(2:2+num_padding-1)) y fliplr(y(end-num_padding:end-1))]; % padding to deal with boundary effect (symmetric)
I get this error whiles runing my code on a sample data of size 231x500. this codes works well on one sample of size 1x500.
Please any help to run the code on my full data. both data are attached. Please the full codes are also attached.
Please I sincerely needs your support urgently on this.
  2 comentarios

Iniciar sesión para comentar.

Respuestas (3)

Matt J
Matt J el 16 de Sept. de 2019
Editada: Matt J el 16 de Sept. de 2019
I suspect it is because y is a column vector, whereas you intended it to be a row vector. You should run the code with "Pause on Errors" selected, so that the code will stop at line 51 where the error occurs. You can then inspect the shape of y and see what is going on.
untitled.png

Yussif M. Awelisah
Yussif M. Awelisah el 17 de Sept. de 2019
yes the problem is with the dimensions but I have not been able to resolve it myself. I hope you can help.

Yussif M. Awelisah
Yussif M. Awelisah el 17 de Sept. de 2019
I used the for loop to correct this problem but another problem occurs. The new problem is below.
Index exceeds matrix dimensions.
Error in tvf_emd (line 47)
y = [fliplr(y(2:2+num_padding-1)) y fliplr(y(end-num_padding:end-1))]; % padding to deal with boundary effect (symmetric).
The code and data are attached.

Categorías

Más información sobre Multidimensional Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by