필터 지우기
필터 지우기

two different plot in the same 3D figure

조회 수: 1 (최근 30일)
Mos_bad
Mos_bad 2019년 7월 10일
편집: Geoff Hayes 2019년 7월 11일
x is normal random vector ranges from 0.05 to 1.2 and y varies from 0 to 22. I want to plot 2D PDF of x and y in the same figure. Z axis values are probability. Here is my code :
x= 0.05 + (1.2-0.05)*rand(1000,1);
[f,xi] = ksdensity(x);
y = 22*rand(1000,1);
[ff,yi] = ksdensity(y);
plot3(yi,xi,f,'b*');
hold on;
plot3(xi,yi,ff,'ro');
Any help to solve the issue is appreciated.

답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by