Problem in creating symbolic function with normcdf

2 次查看(过去 30 天)
Hi everyone,
I have a problem when creating a symbolic function with normcdf. I read some related postings and guess that might be the case that 'less than equal to' is not defined in 'syms'. Ultimately, I need to use this symbolic function to get the Hessian matrix. Can anyone please give me some idea on how to solve this problem? Thanks very much!
Here is my code:
syms mu sigma lembda eta
f2 = -(-N_M*log(eta+lembda*(1-normcdf(log(M_minw),mu,sigma)))+N_M*log(lembda)+Nu_M*log(1-normcdf(log(M_minw),mu,sigma))+Nu_M*log(eta)-Ne_M*log((sqrt(2*pi)*sigma))-sum(log(M(n,2)))-sum((log(M(n,2))-ones(n,1)*mu).^2/(2*sigma^2))-lembda*(1-normcdf(log(M_minw),mu,sigma))*sum(M(n(end)+1:end,1)));
This is the error msg:
??? Error using ==> sym.sym>notimplemented at 2514
Function 'le' is not implemented for MuPAD symbolic objects.
Error in ==> sym.sym>sym.le at 825
notimplemented('le');
Error in ==> normcdf at 57
sigma(sigma <= 0) = NaN;
Thanks!
Sonia

采纳的回答

Alexander
Alexander 2012-3-19
It seems that normcdf is not defined for sym objects. You can try to express normcdf for syms in a more elementary way, like this:
normcdfsym = @(x, mu, sigma)(1/2 - erf((2^(1/2)*(mu - x))/(2*(sigma^2)^(1/2)))/2)
With this your formular would look like this:
f2 = -(-N_M*log(eta+lembda*(1-normcdfsym(log(M_minw),mu,sigma)))+N_M*log(lembda)+Nu_M*log(1-normcdfsym(log(M_minw),mu,sigma))+Nu_M*log(eta)-Ne_M*log((sqrt(2*pi)*sigma))-sum(log(M(n,2)))-sum((log(M(n,2))-ones(n,1)*mu).^2/(2*sigma^2))-lembda*(1-normcdfsym(log(M_minw),mu,sigma))*sum(M(n(end)+1:end,1)));
However there are still some undefined variables, like N_M or M.
  1 个评论
geeks
geeks 2012-3-19
Thank you so much, Alexander! It works:) The code I posted is only a fraction of the whole program. I have N_M and M defined at the very beginning. Thanks a lot!!

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Number Theory 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by