creating a rectangle plot
Ältere Kommentare anzeigen
How can i create this rectangle in matlab?
Antworten (3)
p = [0 2 2 3 3 5 5 0 0;
0 0 1 1 0 0 4 4 0];
plot(p(1,:), p(2,:))
6 Kommentare
PA
am 25 Jul. 2022
Chunru
am 25 Jul. 2022
You can use polygon but not rectangle since it is NOT a rectangle.
PA
am 25 Jul. 2022
Walter Roberson
am 25 Jul. 2022
top row of p is x coordinates. Bottom row is y coordinates.
PA
am 26 Jul. 2022
You can work out the coordinates (use nan to break up the line).
p = [0 4 nan 6 7 7 0 0 nan 4 6 6 4 4;
0 0 nan 0 0 5 5 0 nan -1 -1 1 1 -1];
plot(p(1,:), p(2,:)); axis off
4 Kommentare
Walter Roberson
am 29 Jul. 2022
it is not clear what information is given? or is it an image that is given?
PA
am 29 Jul. 2022
PA
am 29 Jul. 2022
Walter Roberson
am 29 Jul. 2022
please post a sample image that does not have the annotations
PA
am 29 Jul. 2022
0 Stimmen
1 Kommentar
Walter Roberson
am 29 Jul. 2022
Please post an actual image, not a diagram
Kategorien
Mehr zu Image Arithmetic finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

