Info

此问题已关闭。 请重新打开它进行编辑或回答。

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

1 次查看(过去 30 天)
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 个评论
Walter Roberson
Walter Roberson 2018-1-11
Your lambda is 9 elements long and your W is 10 elements long. What size are you expecting lambda*(W-mu)/sigma to be?

回答(1 个)

KSSV
KSSV 2018-1-12
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)

此问题已关闭。

Community Treasure Hunt

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

Start Hunting!

Translated by