Rectangle formed with lines
5 次查看(过去 30 天)
显示 更早的评论
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 个评论
Image Analyst
2020-4-9
编辑:Image Analyst
2020-4-9
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
2020-4-9
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:
- Stick to one of these questions here, instead of spreading out the same information in three questions.
- Respond in that question to the people who are trying to help you.
- Post your own attempt to do the task.
- 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.
回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!