draw lines based on coordinates
22 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I am looking for a way to add a line to a convex function based on the coordinates.
I have a convex funtion going from x=1, y=19.99 to x=17, y=18.57. How is it possible to draw a straigt line between those two coordinates?
Thank you very much for the help!
0 件のコメント
採用された回答
Siam
2014 年 11 月 17 日
You can try this to draw the line
x = [1 17];
y= [19.99 18.57];
line(x,y,'Color','r','LineWidth',4)
You can change the color as 'r' is for red and line width as well which is 4 for this case.
4 件のコメント
Siam
2014 年 11 月 17 日
Please open a new question and provide some more information with a demo image if possible.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Computational Geometry についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!