我想编写代码以首先显示正方形,然后在正方形框内显示两个相互正交的椭圆。请帮我。我是 Matlab 的新手。我知道matlab的所有基础知识。
问问题
516 次
1 回答
1
以下代码应该可以工作:
pdeellip(0, 0, 1, 0.5, 0) % Draw firste ellipse with center (0,0)
pdeellip(0, 0, 0.5, 1, 0) % Draw firste ellipse with center (0,0)
epderect([-1 1 -1 1]) % Parameters are [xMin xMax yMin yMax]
您应该阅读有关绘制矩形和椭圆的文档:http: //www.mathworks.com/help/pde/ug/pderect.html http://www.mathworks.com/help/pde/ug/pdeellip.html
在那里,您将看到函数采用哪些参数,然后您可以更改参数以满足您的需要。
于 2013-03-26T20:27:49.590 回答