Plot and compare probability distribution (3 Dimension) in matlab
古いコメントを表示
Dear Experts,
How to plot and compare probability distribution (3 Dimension) in matlab. Is there any specific function in matlab.
Many thanks in advance for you help
regards
SM
回答 (3 件)
Daniel Shub
2011 年 12 月 8 日
Do you mean your probability distributions depend on 3 dimensions (x,y,z) or two dimensions (x,y) with the probability being the third?
If you probability only depends on x and y, then you could use mesh
doc mesh
If you need an additional dimension, you could look at conditional probabilities, things like P(x,y|z), and use mesh. You could also try and parameterize the distributions. MATLAB can help you do all these things, but you need to know what you want to do.
2 件のコメント
Sayanta
2011 年 12 月 8 日
Daniel Shub
2011 年 12 月 8 日
You cannot visualize 5 dimensions. 2 dimensions is trivial, three is easy, 4 is doable (for example with slices or time), 5 is not practical. You need to do some sort of dimension reduction (e.g., PCA)
Sean de Wolski
2011 年 12 月 8 日
figure;
subplot(121);
mesh(A)
subplot(122);
mesh(B)
?
Yesid Goyes
2011 年 12 月 12 日
0 投票
hello. you must used SLICE
doc slice
I have this problem for seismic data.
カテゴリ
ヘルプ センター および File Exchange で 2-D and 3-D Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!