How to change the size of the marker in CONEPLOT without weighting
2 ビュー (過去 30 日間)
古いコメントを表示
Hi. I am trying to plot a vector field based on CONEPLOT. for some reason, I want to generate the non-weighted cone(same size of cones for all intensity), but indicates its intensity by colors.
s=0;
absVectors=abs(3d data)
qv = coneplot(X,Y,Z,u,v,w,vX,vY,vZ,absVectors,s,'spline');
But the size of a marker(cone) is too small to observe. How can I change the global weight of marker without weighting each cone?
Regards
0 件のコメント
回答 (1 件)
KSSV
2017 年 3 月 22 日
coneplot accepts the size of markers as below:
coneplot(x,y,z,u,v,w,cx,cy,cz,N); % N is size of marker
You specify your required value.
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!