I want to save the assigned labels in a 3d scatter plot
2 次查看(过去 30 天)
显示 更早的评论
I have 180 coordinates x,y,z. and I assigned labels from 1:180. This shows that I have 180 coordinate points. After the plot, It plots like a rectangular matrix with the labels (used text function to assign the labels on the plot) at different positions according to the the coordinates.
I want to save the rectangular matrix with the assigned labels in the plot. I want the map of labels as a matrix.
2 个评论
Dyuman Joshi
2023-12-3
"I want to save the rectangular matrix with the assigned labels in the plot."
Save as what? an array? or in a data file e.g. excel? or something else?
回答(1 个)
Sulaymon Eshkabilov
2023-12-3
If understood your question, is this what you are to get with your plot:
D = readtable('DBOOK.xlsx');
X = D{:,2};
Y = D{:,3};
Z = D{:,4};
S = repmat(100,numel(X),1);
Size_M=S(:);
scatter3(X,Y,Z, Size_M);
text(X, Y, Z, D.Parameter, 'Vert','bottom', 'Horiz','left', 'FontSize',11)
xlabel('X values')
ylabel('Y values')
zlabel('Z values')
2 个评论
Dyuman Joshi
2023-12-5
编辑:Dyuman Joshi
2023-12-5
@RAJA SEKHAR BATTU How did you assign the labels?
Can you share your code that produced the above plot?
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Distribution Plots 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!