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

fast 10 Jahre vor | 0

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

fast 10 Jahre vor | 0

| akzeptiert

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

fast 10 Jahre vor | 0

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

fast 10 Jahre vor | 3

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

fast 10 Jahre vor | 0

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

etwa 10 Jahre vor | 3

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

mehr als 10 Jahre vor | 0

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

mehr als 10 Jahre vor | 2

| akzeptiert

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

mehr als 11 Jahre vor | 1

| akzeptiert