Rectangle formed with lines

1 view (last 30 days)
Dark Shadow
Dark Shadow on 7 Apr 2020
Commented: the cyclist on 9 Apr 2020
How can I create a rectangle with lines when I have to insert the rectangels dimensions via input (ex: Width: 5 Length: 10).
The center of the rectangle is at the center of XY axes.
Plot the rectangle.
I have days and I cant find the solution. Please tell me the solution.
Thank you!
  4 Comments
Image Analyst
Image Analyst on 9 Apr 2020
Edited: Image Analyst on 9 Apr 2020
As another solution (not necessarily the best one), you could use 4 calls to the line() function. For example
line([-2.5, 2.5], [-5, 5], 'Color', 'r');
etc.
the cyclist
the cyclist on 9 Apr 2020
You've now asked pretty much the same question three different times on this forum. Different people have given you pretty much the same ideas. The main thing you seem to need to do is use the line command to make the rectangle.
But you don't seem to be making progress. You've only posted code that was supplied to you. You haven't posted anything you've tried yourself. (At least I haven't seen it.) You haven't responded in the forum to the people who are trying to help you.
My recommendations:
  1. Stick to one of these questions here, instead of spreading out the same information in three questions.
  2. Respond in that question to the people who are trying to help you.
  3. Post your own attempt to do the task.
  4. Be specific about where you are stuck.
I have to say, you seem pretty lost in this task. I think you might need to seek help from your instructor or a tutor if you can. This forum might not be enough for you.

Sign in to comment.

Answers (0)

Categories

Find more on Startup and Shutdown 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!