Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

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

1 visualizzazione (ultimi 30 giorni)
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 Commento
Walter Roberson
Walter Roberson il 11 Gen 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?

Risposte (1)

KSSV
KSSV il 12 Gen 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)

Questa domanda è chiusa.

Community Treasure Hunt

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

Start Hunting!

Translated by