Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

How do I merge 3 estimated parameters stored in 3 different cells?

1 vue (au cours des 30 derniers jours)
Tejaswini Ramesh
Tejaswini Ramesh le 12 Mar 2015
Clôturé : MATLAB Answer Bot le 20 Août 2021
If I use
load para1
m1=para;
load para2
m2=para;
load para3
m3=para;
m=merge(m1,m2,m3)
it gives the error Undefined function 'merge' for input arguments of type 'cell' Para is the cell 20X1 where the parameters are stored.
Kindly help, Thanks in advance.

Réponses (1)

Star Strider
Star Strider le 12 Mar 2015
The cat function may be what you’re looking for.
  3 commentaires
Stephen23
Stephen23 le 12 Mar 2015
Modifié(e) : Stephen23 le 12 Mar 2015
@Tejaswini Ramesh: Neither the word "covariance" nor "mean" appears anywhere in your question. Sorry, but we can't read minds yet, although we do try.
Can you please edit your question and instead of giving us some broken code that uses a non-existent function you should actually tell us details of what you want to do. This includes examples of the input and output values.
Please read this, and follow its advice if you actually want to get some help:
Star Strider
Star Strider le 12 Mar 2015
Do you have some sort of reference for that? I never heard of that procedure.
If you want to do inverse-variance weighting and then add the weighted parameters, with the variances of the parameters being the corresponding elements of the diagonal of the covariance matrix, something like this may work:
m = para1./diag(cov1) + para2./diag(cov2) + para3./diag(cov3);
where ‘cov1’ is the covariance matrix associated with ‘para1’, and so for the others.
I make no claim that this is a statistically valid technique.

Cette question est clôturée.

Community Treasure Hunt

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

Start Hunting!

Translated by