Clear Filters
Clear Filters

How to change the size of the marker in CONEPLOT without weighting

1 view (last 30 days)
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

Answers (1)

KSSV
KSSV on 22 Mar 2017
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.
  1 Comment
Yong Guk Kang
Yong Guk Kang on 22 Mar 2017
Edited: Yong Guk Kang on 22 Mar 2017
Thanks for answer.
But, It's not I want. If use value N such as 1 or 2, it changes(weights) size of marker via its own intensity per each point.
N=0 makes same size of markers, but markers are too small.

Sign in to comment.

Tags

Community Treasure Hunt

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

Start Hunting!