Answered
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...

mer än 9 år ago | 0

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

mer än 9 år ago | 0

| accepted

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

mer än 9 år ago | 0

Answered
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'); ...

mer än 9 år ago | 3

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

nästan 10 år ago | 0

Answered
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 ...

nästan 10 år ago | 3

Answered
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 ...

mer än 10 år ago | 0

Answered
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...

mer än 10 år ago | 2

| accepted

Answered
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...

ungefär 11 år ago | 1

| accepted