在 while 循环中,我需要绘制两个实体的位置 (x,y)。也就是说,我需要做的就是生成一个带有两个点的图。我需要将绘图缩放到特定的最大 x 和 y 值。另一个要求是,其中一个点需要在其周围放置三个同心环,每个环具有给定的半径。此外,这一切都将在一个循环中发生,因此我希望只打开一个绘图窗口,并且我没有打开一大堆窗口(每个循环迭代一个)。
基本上这是我正在尝试(但失败了!)实现的伪代码:
-> Open new plot window, with a given x and y axis
while (running) {
-> Clear the plot, so figure is nice and clean
-> Plot the two points
-> Plot the three circles around point A
}
我在 MATLAB 的文档中找到了几个项目,但似乎没有一个绘图函数可以满足我的要求,或者在某些情况下,我无意中只使用了一些数据创建了多个绘图(即,一个绘图具有点,另一个绘图具有圆圈) .