change in multiple plot3
12 次查看(过去 30 天)
显示 更早的评论
hi, i have some multiple plot like this,
plot3(sLLD(132:350,1),sLLD(132:350,2),sLLD(132:350,3),'o','MarkerFaceColor','[0 0.2 1]');
starts from one specific length and finish like that, sLLD is 4-column matrix, i want to change MarkerSize based on last column in sLLD. please guide me :) ;) . tnx tnx tnx
0 个评论
采纳的回答
Walter Roberson
2018-7-18
It is not possible to have a "primitive line object" or "lineseries object" that has a different marker size for each point.
As you are specifying a marker 'o' but no line style, then you are not actually drawing a line. In that case, you should switch to using scatter3()
scatter3(sLLD(132:350,1), sLLD(132:350,2), sLLD(132:350,3), sLLD(132:350,4), [0 0.2 1], 'filled')
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Surface and Mesh Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!