필터 지우기
필터 지우기

Plot multiple normal distributions

조회 수: 3 (최근 30일)
James
James 2015년 6월 9일
답변: Nitanshu 2022년 6월 14일
I want to plot multiple normal distributions overlaying each other of dataset containing coordinates at along x and y direction?.. How do i do that?...
I want it such that i don't have a separate table for distribution x coordinates and one for y coordinates.

답변 (1개)

Nitanshu
Nitanshu 2022년 6월 14일
Hi James,
For plotting multiple normal distributions overlaying each other probably you can use the hold on keyword present in MATLAB.
you can use it as.
x1 = [1 2 3 4 5];
y1 = [2 4 6 7 10];
x2 = [5 4 3 2 1];
y2 = [2 3 5 8 10];
plot(x1, y1);
hold on
plot(x2, y2);
For more information you can refer this documentation on hold on.

카테고리

Help CenterFile Exchange에서 Descriptive Statistics and Visualization에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by