How can I calculate the Chi-Squared CDF if I use MATLAB C-Coder?

My MATLAB function file calls "chi2cdf", and I need to convert the script to C. The MATLAB C-Coder tool does not support the use of chi2cdf (and also does not support the use of plain cdf, either). Do any of you know of a work-around?

답변 (1개)

Mike Hosea
Mike Hosea 2013년 9월 11일

1 개 추천

This function is now supported for code generation in R2013b.

댓글 수: 2

It is assuring to know that The Math Works is continually adding capability to their products (in this case, MATLAB). But how do I work around the problem given that my version of MATLAB (2012?) does not support the function? After all, if my version of MATLAB had supported the chi2cdf function, I would not have posed the question.
I have no way of knowing whether you are under a maintenance agreement or not. Many users can upgrade when new releases come out. Since you apparently cannot, note that GAMMAINC is supported, and GAMMAINC will compute what is referred to as the "regularized gamma function" here
So, you could do it this way.
function p = mychi2cdf(x,a)
p = real(gammainc(max(x,0)/2,a/2));
I don't know if you cared about the possibility of negative x, but the MAX call takes care of that possibility. The wrapping with real() is only there because the output of GAMMAINC is always complex with MATLAB Coder, and we know that the imaginary part will be zero with non-negative real inputs.

댓글을 달려면 로그인하십시오.

제품

질문:

2013년 8월 23일

Community Treasure Hunt

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

Start Hunting!

Translated by