필터 지우기
필터 지우기

Create 3D scatter plot from matrix

조회 수: 2 (최근 30일)
Tom
Tom 2013년 10월 28일
댓글: Tom 2013년 10월 28일
Hello,
Could someone enlighten me how to make a 3D scatter plot from a matrix. Specifically, given a matrix of the form:
A =
1.0000
10.0604
-4.6736
-1.8343
Where the entries are to be defined as:
A(1) = atom number
A(2) = x-coordinate
A(3) = y-coordinate
A(4) = z-coordinate
How then, can I place a marker in the position defined by A(2) A(3) and A(4), and give it the label A(1) ?
Any help would be much appreciated.
Kind regards,
Tom

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2013년 10월 28일
A=[1.0000;10.0604; -4.6736; -1.8343]
scatter3(A(2),A(3),A(4))
text(A(2),A(3),A(4),num2str(A(1)))

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by