Problem with mvncdf - returning NaN
이 질문을 팔로우합니다.
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다.
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다.
오류 발생
페이지가 변경되었기 때문에 동작을 완료할 수 없습니다. 업데이트된 상태를 보려면 페이지를 다시 불러오십시오.
이전 댓글 표시
0 개 추천
Hello, I am having some problems when using 'mvncdf'. Consider:
mu = [0.4704 14.5809];
cov = [0.0030 0.0922; 0.0922 2.8597];
xl = [8 0];
xu = [12 4];
Then, mvncdf(xl, xu, mu, cov) returns NaN but I cannot understand why. What is more, the documentation doesn't mention anything relative. And, what is even more strange, mvncdf(xu, mu, cov) - mvncdf(xl, mu, cov) (which is equivalent) returns a double, instead of Nan. Is that due to a bug in mvncdf, or do I miss something important?
채택된 답변
The limits of area of integration defined in xl and xu are way, way, out in the tails of the density function, which may be why mvncdf is having an issue.
As I understand mvncdf ...let p(x1,x2) be the joint density. Then mvncdf computes the probability, P, given by:
syms p(x1,x2)
xl = sym('xl',[1 2]);
xu = sym('xu',[1 2]);
P = int(int(p,x1,xl(1),xu(1)),x2,xl(2),xu(2))
P =
First, let's take a look at the pdf as defined by the parameters in the question
mu = [0.4704 14.5809];
cov = [0.0030 0.0922; 0.0922 2.8597];
func(mu,cov);

Now, redraw but with a rectangle showing the area of integration:
xlower = [8 0];
xupper = [12 4];
func(mu,cov,xlower,xupper)

As you can see, the area of integration is way out there. I don't know why mvncdf returns NaN in this case instead of zero, but it probably has something to do with trying to integrate a function with incredibly small values.
Now try with a more reasonable area of integration
xlower = [0.4 13];
xupper = [0.5 15];
func(mu,cov,xlower,xupper);

The probability is:
mvncdf(xlower,xupper,mu,cov)
ans = 0.4229
which seems pretty reasoable.
Also, I don't think that mvncdf(xu, mu, cov) - mvncdf(xl, mu, cov) is equivalent
mvncdf(xupper, mu, cov) - mvncdf(xlower, mu, cov)
ans = 0.4985
because it includes area outside of the red rectangle, particularly the light blue region where x1 > 0.4 and x2 < 13.
function func(mu,cov,xlower,xupper)
x1 = 0.2:.001:.8;
x2 = 10:.001:18;
[X1,X2] = meshgrid(x1,x2);
X = [X1(:) X2(:)];
p = mvnpdf(X,mu,cov);
p = reshape(p,length(x2),length(x1));
figure
pcolor(x1,x2,p),shading interp,colorbar
xlabel('x1'),ylabel('x2')
if nargin == 4
rectangle('Position',[xlower(1) xlower(2) xupper(1)-xlower(1) xupper(2)-xlower(2)],'EdgeColor','r');
axis auto
end
end
댓글 수: 9
Oh I see, thank you very much!
Thus, is it safe to replace all NaN returned by 'mvncdf (xupper, xlower, mu, cov)' with 0?
Paul
2021년 7월 14일
I don't know if that's safe or not, because I don't know exactly why mvncdf is returning NaN. Depending on what you're doing, it may be safe for you to make a judgement about when to assign the result to zero based on the area of integration and how far away it is (relative to cov) from the mean.
It might also be worthwhile to reach out to Tech Support about this, because mvncdf shouldn't be returning NaN.
Tech support of Matlab is very unreliable. I cannot reach out to them as I use R2014a for which there is no support anymore.
Despite the existence of the same problem in R2021a, they refuse to check it out (and fix it in future versions) unless I provide them a valid license number of a newer Matlab version (which obviously I have not, the only valid license I own is the one of R2014a, provided by my university).
If anyone reading this post owns a valid license of a relatively new Matlab version, let me know so I can report this bug to tech support. Or, he can report it himself if he prefers. Thank you!
Paul
2021년 7월 23일
Submitted. I'll repport back here when I get a response.
Thanks!!
Paul
2021년 7월 27일
I submitted against 2020b. The response was: "Our developer team confirmed the issue, and they will consider a resolution for a future release of MATLAB."
Great. Thank you!!
adam
2022년 8월 30일
FWIW, this bug is still present in my current version of MATLAB 2021a:
>> x
x =
0.7551 0.4435 -1.5760
>> mu
mu =
-0.8469 -1.9076 2.3800
>> covar
covar =
0.0052 0.0045 0.0027
0.0045 0.0063 0.0028
0.0027 0.0028 0.0015
>> mvncdf(x,mu,covar)
ans =
NaN
Fixed in either 2021b or 2022a, it appears, unless the extra digits not shown make a difference. However, I didn't get a notice of such, which I have for other issues that I've reported that have been fixed.
x = [0.7551 0.4435 -1.5760];
mu = [-0.8469 -1.9076 2.3800];
covar = [
0.0052 0.0045 0.0027
0.0045 0.0063 0.0028
0.0027 0.0028 0.0015];
mvncdf(x,mu,covar)
ans = 0
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Descriptive Statistics에 대해 자세히 알아보기
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!웹사이트 선택
번역된 콘텐츠를 보고 지역별 이벤트와 혜택을 살펴보려면 웹사이트를 선택하십시오. 현재 계신 지역에 따라 다음 웹사이트를 권장합니다:
또한 다음 목록에서 웹사이트를 선택하실 수도 있습니다.
사이트 성능 최적화 방법
최고의 사이트 성능을 위해 중국 사이트(중국어 또는 영어)를 선택하십시오. 현재 계신 지역에서는 다른 국가의 MathWorks 사이트 방문이 최적화되지 않았습니다.
미주
- América Latina (Español)
- Canada (English)
- United States (English)
유럽
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
