在指定的uiaxes上使用geoplot函数
时间: 2024-05-11 22:14:21 浏览: 111
javascript(js) join函数使用方法介绍
5星 · 资源好评率100%
要在指定的uiaxes上使用geoplot函数,需要使用'Parent'参数。具体步骤如下:
1. 创建uifigure和uiaxes对象:
```matlab
fig = uifigure;
ax = uiaxes(fig);
```
2. 将uiaxes对象传递给geoplot函数的'Parent'参数:
```matlab
geoplot(ax, lat, lon)
```
其中,'lat'和'lon'是绘制的地理数据。
完整的示例代码:
```matlab
fig = uifigure;
ax = uiaxes(fig);
lat = [51.5072, 40.7128, 35.6895];
lon = [-0.1276, -74.0060, 139.6917];
geoplot(ax, lat, lon, 'o-')
```
这将在uiaxes对象上绘制一个包含三个点的线。
阅读全文