Plotting nodes and values

조회 수: 3 (최근 30일)
Nazar Adamchuk
Nazar Adamchuk 2021년 10월 31일
답변: Walter Roberson 2021년 10월 31일
I am plotting the nodes (>150,000) havíng x,y,z-coordinates with help of
scatter3(coor_vs_difference.x_coor,coor_vs_difference.y_coor,coor_vs_difference.z_coor, '.');
receiving:
Now I'd like to add some associated values at each node, for example, the values from the variable "deltaCycLimit". Each of the data point should receive now some color value for the colorbar. The values in the variable "deltaCycLimit" would vary accroding to the following colorbar from -1066670 (darkblue) to 1195724 (yellow):
How I can represent on my scatter3 plot all nodes, colored from the colorbar according to values?

채택된 답변

Walter Roberson
Walter Roberson 2021년 10월 31일
The scatter3() syntax is
scatter3(x, y, z, SIZE, COLOR, LINESPEC)
SIZE can be a scalar, or can have one entry for each x value, or can be [] to use default size.
COLOR can be a scalar, or can be a 1 x 3 vector of RGB, or can be a N x 1 vector where N is the number of entries in x, or can be an N x 3 array where N is the number of entries in x.
In your case you would probably use deltaCycLimit or deltaCycLimit(:) for your COLOR information.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by