How to draw line with setting color for every point
1 次查看(过去 30 天)
显示 更早的评论
hello there!
I am plotting a segment which moves in time. According to some conditions, I need the color of some point of the segment to change.
since I am redrawing the segment at every time step usign a line_handle, I need to set the color of every point of the segment at every time instant.
Then, I am shifting the vector.
To show you a simple example, I wrote a few lines (not working).
Thank you!!
In the code below, I get a warning:
'Warning: Error updating Scatter.
CData must be an RGB triplet, an M-by-1 vector of the same length as X, or an M-by-3 matrix.'
The thing is that when I run size(pe) I get 300 1,
size(color_pass) = 300 3.
So it should be correct!
for agent = 1:swarm.nb_agents
color_pass(1, :) = color(:, agent)';
for i = 2:self.wakes_length
color_pass(i, :) = color_pass(1, :);
end
pn = self.wakes(:, 3*(agent-1)+1);
pe = self.wakes(:, 3*(agent-1)+2);
pd = self.wakes(:, 3*(agent-1)+3);
hold on;
self.lines_handle(agent) = scatter3(...
pe, pn, -pd, 'SizeData', 4, 'CData', color_pass);
end
3 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Training and Simulation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!