How can I draw a line with two points x1, y1 and x2, y2 and assign weight to the edge.
16 views (last 30 days)
Show older comments
How can I draw a line with two points (x1, y1) and (x2, y2) and assign weight to the edge.
Thanks in advance.
Answers (1)
Scott MacKenzie
on 10 Mar 2022
Edited: Scott MacKenzie
on 10 Mar 2022
x1 = 0; x2 = 1;
y1 = 0; y2 = 1;
line([x1 x2], [y1 y2], 'linewidth', 5);
text(0.45, 0.55, '10', 'FontSize', 14);
See Also
Categories
Find more on 2-D and 3-D Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!