Line with variable width and Cdata coloring

5 次查看(过去 30 天)
I am able to plot a line with a separate data vector specifying the CData by plotting a surface and viewing it from the side:
h = surface('XData',[x(:) x(:)], 'YData',[y(:) y(:)], 'ZData',zeros(length(x(:)),2), 'CData',[c(:) c(:)], 'FaceColor','none', 'EdgeColor','flat', 'Marker','none');
I would now like to vary the width of the line according to the CData as well. Is there any function or suggested way to do this?
  1 个评论
Robin
Robin 2015-4-2
I am able to change the vertical width using surface as below, but this is not quite right - because vertical width is not the same as line width when the line is not horizontal.
Finding the direction of the line and expanding the surface segment perpendicular to the line seems like it will be quite difficult.
widthrange = maxwidth-minwidth;
width = ((c ./ max(c))*widthrange) + minwidth;
h = surface(...
'XData',[x(:) x(:)],...
'YData',[y(:)-(width/2) y(:)+(width/2)],...
'ZData',zeros(length(x(:)),2),...
'CData',[c(:) c(:)],...
'FaceColor','interp',...
'EdgeColor','interp',...
'Marker','none');

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Scatter Plots 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by