Can anybody explain the line part in code. What is the meaning of Corner1 (2) means?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
passioncoding
am 28 Aug. 2018
Beantwortet: KSSV
am 28 Aug. 2018
line([corner1(2);corner2(2);corner3(2);corner4(2);corner1(2)],[corner1(1);corner2(1);corner3(1);corner4(1);corner1(1)],'color','blue','LineWidth',2);
0 Kommentare
Akzeptierte Antwort
KSSV
am 28 Aug. 2018
Read about function line
This is used to plot a line, it needs x and y coordinates. In your code, the coordinates are defined in corners...you are giving input to the line.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!