필터 지우기
필터 지우기

How can I plot below discriminant functions (g1(x), g2(x), g3(x))?

조회 수: 1 (최근 30일)
Rosaline Zurock
Rosaline Zurock 2020년 11월 28일
답변: Ram 2024년 2월 22일
Under these numbers:

답변 (1개)

Ram
Ram 2024년 2월 22일
Hi Rosaline, I understand that you want to plot the above three discrimenant functions.
This is a possible approach, please adject the below limits accoding to your needs;
x = linspace(0, 10);
f = @(x) ((0.5/sqrt(2*pi))*exp(-(x-1).^2/2));
g = @(x) ((0.5/sqrt(2*pi))*exp(-(x+1).^2/2));
h = @(x) ((0.5/sqrt(2*pi))*exp(-(x-1).^2/2) + (0.5/sqrt(2*pi))*exp(-(x+1).^2/2));
figure
plot(x, [f(x); g(x); h(x)])
grid
legend('f(x)','g(x)', 'h(x)', 'Location','best')
Output for above code snippet:
Please also check; https://www.mathworks.com/help/matlab/ref/plot.html.
Hope it's helpful.
-Ram

카테고리

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

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by