Plotting data as points onto a previously generated graph

조회 수: 2 (최근 30일)
INDS
INDS 2020년 1월 13일
댓글: Bhaskar R 2020년 1월 13일
I have this data stored as a variable and wanted to plot it onto a graph produced by a different script. I want these to be plotted as points on the graph as opposed to a line. I was wondering what code would be used to do so. Thank you!
(The left column is the y coordinates and the right column is the x coordinates)
ans =
233.0000 0.2200
253.0000 1.0571
257.0000 1.8943
237.0000 2.7057
229.0000 3.5171
242.0000 4.3286
254.0000 5.1686
240.0000 5.8429
242.0000 6.8657
243.0000 7.7314
250.0000 8.5657

채택된 답변

Bhaskar R
Bhaskar R 2020년 1월 13일
x = [
233.0000 0.2200
253.0000 1.0571
257.0000 1.8943
237.0000 2.7057
229.0000 3.5171
242.0000 4.3286
254.0000 5.1686
240.0000 5.8429
242.0000 6.8657
243.0000 7.7314
250.0000 8.5657] % your data
plot(x(:, 2), x(:, 1), 'o', 'Color','r'),grid on; % plotting
  댓글 수: 2
INDS
INDS 2020년 1월 13일
This works perfectly. Thank you!
Bhaskar R
Bhaskar R 2020년 1월 13일
You are welcome !!

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

추가 답변 (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