Respondida
How to avoid webmap reset when executing wmline? (AKA: how to visualize a colored line that refreshes every second on a map)
There's an auto fit option that you can turn off to avoid the zooming and re-centering: wmline([0 20],[0 150],'AutoFit',fal...

más de 9 años hace | 0

Respondida
How to change default pointer color in mapshow?
mapshow(-0.5796,-0.0335,'DisplayType','point','Marker','*','MarkerEdgeColor','y')

más de 9 años hace | 0

| aceptada

Respondida
how to draw map in MATLAB
The functions 'webmap' and 'wmmarker' might also be as good starting points.

más de 9 años hace | 0

Respondida
Determining whether a point on earth (given latitude and longitude) is on land or ocean
You could also try the inpolygon function. % Load the coastline coast = load('coast.mat'); ax = worldmap('world'); ...

más de 9 años hace | 3

Respondida
how to detect position of center of square in image
Hint: doc regionprops

casi 10 años hace | 0

Respondida
Convert geodetic coordinate to local ENU
The default reference ellipsoid is a unit sphere. Instead, try using a wgs84 earth model and you will get a result much closer ...

casi 10 años hace | 3

Respondida
vertcat on a cell array and a double array
You need to work with cell arrays in order to support mixed numeric and string data. To use vertcat, convert the double matrix ...

más de 10 años hace | 0

Respondida
When arranging figures using gcf, Java Heap Space Error
I'm not sure exactly where you went wrong, but a much easier solution to laying out figure windows in a nice grid is to dock the...

más de 10 años hace | 2

| aceptada

Respondida
How do I plot points over a topographic map?
The issue is that when you use display type 'surface' you get a 3D surface. The markers are plotted with Z=0, so they end up hi...

alrededor de 11 años hace | 1

| aceptada