Drawing line from center to other three points
3 次查看(过去 30 天)
显示 更早的评论
I want to know if its possible to draw lines from a vector which has two points and is the central point to another vector that has 3 points. Bassically, it like drawing a line from center to three points. I am using Matlab.
0 个评论
采纳的回答
Image Analyst
2016-2-7
编辑:Image Analyst
2016-2-7
Yes. You can use line() or plot();
line([xCenter, xVector(1)], [yCenter, yVector(1)], 'Color', 'r', 'LineWidth', 2);
line([xCenter, xVector(2)], [yCenter, yVector(2)], 'Color', 'r', 'LineWidth', 2);
line([xCenter, xVector(3)], [yCenter, yVector(3)], 'Color', 'r', 'LineWidth', 2);
2 个评论
Image Analyst
2016-2-7
Not sure what you mean. As long as you've set "hold on", you can just call plot().
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Processing Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!