필터 지우기
필터 지우기

Plotting graph with given points

조회 수: 127 (최근 30일)
Odien
Odien 2015년 8월 5일
댓글: DGM 2024년 3월 6일
basically we always plot graph of certain function such as x = 0 : 1 : 10 y = sinx; plot(x,y,'-r^')
lets say given x = 2 y = 15 x = 3 y = 8 x = 8 y = 30 the point is random, how to plot this graph?

채택된 답변

Danny Alvarez
Danny Alvarez 2015년 8월 5일
x=[2,3,8]; y=[15,8,30]; plot(x.y)
or
plot(x,y,'o') for dots
  댓글 수: 4
Jorge Luis Dominguez Martinez
Jorge Luis Dominguez Martinez 2022년 6월 13일
이동: DGM 2024년 3월 6일
From the Graph window, you can go to File -> Save as
or click on Save Figure
and then select JPEG image (*jpg) as a type .
DGM
DGM 2024년 3월 6일
... and save it as a PNG, not a JPG. Never save plots as a JPG.

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

추가 답변 (0개)

카테고리

Help CenterFile 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!

Translated by