how to extract (x-y) coordinates after using the RECTANGLE function
11 次查看(过去 30 天)
显示 更早的评论
Hi,
I need to draw rectangles, given a center, an x_dimension and an y_dimension. I know that there is the specific function "rectangle" to do this, but in the programm I'm modifying it's mandatory to have the rectangles as sets of (x,y) coordinates ( so that plot(x,y) gives the desidered rectangle).
Is there a generic way to excract the coordinates from the rectangle function?
2 个评论
Guillaume
2020-3-1
Your question is a bit puzzling. The rectangle function is used to draw a rectangle in a figure. You give it the coordinates of the rectangle you want to draw. You can't call rectangle if you don't have a rectangle coordinates.
回答(1 个)
Guillaume
2020-3-1
%r: [X, Y, width, height] description of a rectangle, that would be pass to rectangle with: rectangle('Position', r)
X = [r(1), r(1)+r(3), r(1)+r(3), r(1), r(1)];
Y = [r(2), r(2), r(2)+r(4), r(2)+r(4), r(2)];
plot(X, Y)
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Lighting, Transparency, and Shading 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!