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
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
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)
0 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!