Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

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

1 visualización (últimos 30 días)
Tejaswini Ramesh
Tejaswini Ramesh el 12 de Mzo. de 2015
Cerrada: MATLAB Answer Bot el 20 de Ag. de 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.

Respuestas (1)

Star Strider
Star Strider el 12 de Mzo. de 2015
The cat function may be what you’re looking for.
  3 comentarios
Stephen23
Stephen23 el 12 de Mzo. de 2015
Editada: Stephen23 el 12 de Mzo. de 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 el 12 de Mzo. de 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.

La pregunta está cerrada.

Community Treasure Hunt

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

Start Hunting!

Translated by