Borrar filtros
Borrar filtros

Info

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

Please help me with this Error using * Inner matrix dimensions must agree.

1 visualización (últimos 30 días)
Mikie
Mikie el 11 de En. de 2018
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
Can anyone correct this code for me? I don't know why I can't plot it.
mu = 0;
sigma = 1;
n = 10;
W = [0.7127 1.0967 0.4012 0.4379 0.2768 -0.2534 0.2828 0.2545 1.0773 -0.1154]
lambda = -2:0.5:2;
L(lambda) = n*log(2/sigma) + sum(log(normpdf((W-mu)/sigma))) + sum(log(normcdf((lambda*(W-mu)/sigma)))) - 3*pi^2*log(1+8*lambda^2/pi)/32
plot(lambda,L)
Thank you so much.
  1 comentario
Walter Roberson
Walter Roberson el 11 de En. de 2018
Your lambda is 9 elements long and your W is 10 elements long. What size are you expecting lambda*(W-mu)/sigma to be?

Respuestas (1)

KSSV
KSSV el 12 de En. de 2018
mu = 0;
sigma = 1;
n = 10;
W = [0.7127 1.0967 0.4012 0.4379 0.2768 -0.2534 0.2828 0.2545 1.0773 -0.1154] ;
% lambda = -2:0.5:2;
lambda = linspace(-2,2,length(W)) ;
L = n*log(2/sigma) + sum(log(normpdf((W-mu)/sigma))) + sum(log(normcdf((lambda.*(W-mu)/sigma)))) - 3*pi^2*log(1+8*lambda.^2/pi)/32 ;
plot(lambda,L)

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by