creating a rectangle plot

Réponses (3)

Chunru
Chunru le 25 Juil 2022
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 commentaires

PA
PA le 25 Juil 2022
Thanks Chunru, And can i use rectangle here
Chunru
Chunru le 25 Juil 2022
You can use polygon but not rectangle since it is NOT a rectangle.
PA
PA le 25 Juil 2022
Chunru can you describe about the coordinate
Walter Roberson
Walter Roberson le 25 Juil 2022
top row of p is x coordinates. Bottom row is y coordinates.
PA
PA le 26 Juil 2022
Thanks, And is there any other method for this to be plot
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

Connectez-vous pour commenter.

PA
PA le 29 Juil 2022
Modifié(e) : PA le 29 Juil 2022

0 votes

I need to find the value of Xa,Ya, Xb ,Yband can anyone help me with the algorithm

4 commentaires

Walter Roberson
Walter Roberson le 29 Juil 2022
it is not clear what information is given? or is it an image that is given?
PA
PA le 29 Juil 2022
an image is given from there i need to find the value of Xa
PA
PA le 29 Juil 2022
Xa and Ya are the points of the line from the frontside and xb and Yb are he points of the line on the rear side. i need to derive the formula for Xa ,Ya, Xb, Yb
Walter Roberson
Walter Roberson le 29 Juil 2022
please post a sample image that does not have the annotations

Connectez-vous pour commenter.

PA
PA le 29 Juil 2022

0 votes

its a fin which have cordintate Xa,Ya and Xb,Yb
i have to find the formula for the Xa and Ya.
the fins with bold is displayed on the case and the dashed lines are the hidden fins inside the case

Tags

Question posée :

PA
le 25 Juil 2022

Commenté :

le 29 Juil 2022

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by