Effacer les filtres
Effacer les filtres

I am having a problem using corelation with table variables.

2 vues (au cours des 30 derniers jours)
ÖMER
ÖMER le 5 Nov 2023
Commenté : ÖMER le 5 Nov 2023
Hello all;
I am trying to find the corelation between two table variables. To be specific not the corelation between values in the tables, directly corelation between two tables.
Both of the table variables have the same number of rows (618364x1).
So far I have tried ;
M(k,p) = corr(data_array1,data_array2)
result;
Error using ()
Subscripting into a table using one subscript (as in t(i)) is not supported.
Specify a row subscript and a variable subscript, as in t(rows,vars). To
select variables, use t(:,i) or for one variable t.(i). To select rows, use
t(i,:).
M(k,p) = corr(data_array1(:,1),data_array2(:,1))
result;
Error using ()
Subscripting into a table using one subscript (as in t(i)) is not supported.
Specify a row subscript and a variable subscript, as in t(rows,vars). To
select variables, use t(:,i) or for one variable t.(i). To select rows, use
t(i,:).
Unfortunately I have tried nearly everthing that I know and search for. Still getting the same error.

Réponse acceptée

KSSV
KSSV le 5 Nov 2023
Modifié(e) : KSSV le 5 Nov 2023
M(k,p) = corr(data_array1.(1),data_array2.(1))
OR
M(k,p) = corr(table2array(data_array1),table2array(data_array2))

Plus de réponses (0)

Catégories

En savoir plus sur Tables dans Help Center et File Exchange

Produits


Version

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by