matlab 怎么在fugure上画点
时间: 2023-05-22 09:02:22 浏览: 147
您可以使用 plot 函数在 MATLAB 的 figure 上画点。例如,要在 figure 上画一个坐标为 (1,1) 的点,可以使用以下代码:
```
figure;
hold on;
plot(1,1,'o');
```
其中,hold on 函数可以保持当前的 figure 不被清空,以便在同一个 figure 上画多个点。'o' 表示画出的点是圆形的,您也可以使用其他符号来表示点。
阅读全文