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

2 views (last 30 days)
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 Comments

Sign in to comment.

Answers (3)

Matt J
Matt J on 16 Sep 2019
Edited: Matt J on 16 Sep 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 on 17 Sep 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 on 17 Sep 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.

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!