i am plotting a scatter plot X= [ 2 ,3,4,5] Y=[10,20,30,40] scatter(X,Y) i am looking for putting y values on the scatter plot...any specific code or hint can anyone help.i am using 2016b version.Thank you in advance.

댓글 수: 1

Well, the code - as you have it now - works:
X= [ 2 ,3,4,5]
X = 1×4
2 3 4 5
Y=[10,20,30,40]
Y = 1×4
10 20 30 40
scatter(X,Y)

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

 채택된 답변

Voss
Voss 2022년 1월 17일

0 개 추천

You need to convert those cell arrays to numeric matrices before you can plot them (scatter or otherwise):
X= { 2 ,3,4,5}
X = 1×4 cell array
{[2]} {[3]} {[4]} {[5]}
Y={ 10,20,30,40}
Y = 1×4 cell array
{[10]} {[20]} {[30]} {[40]}
scatter(cell2mat(X),cell2mat(Y))

댓글 수: 3

Prasad Joshi
Prasad Joshi 2022년 1월 17일
Thank you for the answer Benjamin.if i want Y data on that scatter plot any specific text can you suggest for example At (3,20) it should show as data on scatter like (3,20) on plot or simply 20 that will also work
Voss
Voss 2022년 1월 17일
편집: Voss 2022년 1월 17일
You can use text() or annotation() or maybe datatip() for that, sounds like. Here it is with text():
X= [ 2 ,3,4,5];
Y=[10,20,30,40];
scatter(X,Y);
text(X(2),Y(2),sprintf(' (%d,%d)',X(2),Y(2)));
Prasad Joshi
Prasad Joshi 2022년 1월 18일
Thank you Benjamin it worked

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

추가 답변 (1개)

Cris LaPierre
Cris LaPierre 2022년 1월 17일
편집: Cris LaPierre 2022년 1월 17일

1 개 추천

Use square brackets to define vectors, not curly braces. You might find MATLAB Onramp helpful, especially chapters 2, 4 & 9. Also, capitalization matters in MATLAB. X is not the same variable as x.
X= [2,3,4,5];
Y=[10,20,30,40];
scatter(X,Y)

댓글 수: 2

Prasad Joshi
Prasad Joshi 2022년 1월 17일
Thank you for the answer Cris.if i want Y data on that scatter plot any specific text can you suggest for example At (3,20) it should show as data on scatter plot

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

카테고리

도움말 센터File Exchange에서 Scatter Plots에 대해 자세히 알아보기

질문:

2022년 1월 17일

댓글:

2022년 1월 18일

Community Treasure Hunt

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

Start Hunting!

Translated by