using contour()

조회 수: 4 (최근 30일)
Bahareh
Bahareh 2011년 4월 16일
I have a distribution with a 1x2 mean vector and a 2x2 covariance matrix. I would like to display the distribution using contour(). Can you please help me?

채택된 답변

Teja Muppirala
Teja Muppirala 2011년 4월 16일
Say your mean is m, and your covariance is S.
m = [1 2];
S = [2 1; 1 10];
The easy way: If you have the statistics toolbox, there is a function called "gmdistribution"
G = gmdistribution(m,S)
F = @(x,y) pdf(G,[x y])
ezcontour(F)
The hard way: Find the equation for a multivariate normal distribution on Wikipedia:
It's at the top right hand side, and type that long expression into MATLAB:
F = @(x,y) (1/2*pi) * (1/sqrt(det(S))) * exp(-0.5* ...
ezcontour(F)
  댓글 수: 1
Bahareh
Bahareh 2011년 4월 16일
Thanks a lot.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Contour Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by