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

1 visualización (últimos 30 días)
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,:);

Respuesta aceptada

KSSV
KSSV el 16 de Jul. de 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 comentario
Tilman Zottl
Tilman Zottl el 16 de Jul. de 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;

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Descriptive Statistics en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by