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

6 visualizzazioni (ultimi 30 giorni)
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,:);

Risposta accettata

KSSV
KSSV il 16 Lug 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 Commento
Tilman Zottl
Tilman Zottl il 16 Lug 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;

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Descriptive Statistics in Help Center e File Exchange

Prodotti


Release

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by