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

7 vues (au cours des 30 derniers jours)
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,:);

Réponse acceptée

KSSV
KSSV le 16 Juil 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 commentaire
Tilman Zottl
Tilman Zottl le 16 Juil 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;

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Descriptive Statistics dans Help Center et File Exchange

Produits


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by