Error because the size of the left side is 4-by-4 and the size of the right side is 1-by-4.

1 view (last 30 days)
I am experiencing this error.
t is defined as t=1 and the priginal data fed to the program is 116x4
Unable to perform assignment because the size of the left side is 4-by-4 and the size of the right side is
1-by-4.
Error in dcc (line 139)
data(:,:,t) = data2d(t,:).*data2d(t,:);

Accepted Answer

KSSV
KSSV on 16 Jul 2021
data(1,:,t) = data2d(t,:).*data2d(t,:);
This is saving the data into initialized matrix problem. You need to check the dimensions of initialized matrix and the matrix which you are going to save into it.
In your line RHS is expecting matrix and you are saving a 1*4 matrix.
  1 Comment
Tilman Zottl
Tilman Zottl on 16 Jul 2021
Thank you so much for the help. This worked, however I am now encountering a subsequent error.
Error using normlike (line 42)
First input must be a vector with 2 elements.
Do you have any idea how to counter this?
This is teh corresponding code and it is sstill about teh same dataset. Thanks for all the help
[LL, LLS] = normlike(data,0,ht);
LLS = -LLS;
LL = -LL;

Sign in to comment.

More Answers (0)

Categories

Find more on Programming in Help Center and File Exchange

Products


Release

R2021a

Community Treasure Hunt

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

Start Hunting!