Submitted


sigmoid
Evaluate a simple sigmoid function.

7 years ago | 7 downloads |

5.0 / 5
Thumbnail

Answered
How can I create a montage of images without using the montage function?
Emily, Note: Screenshots of code are sometimes tough to follow along with. It's typically more helpful to copy and paste the...

7 years ago | 0

| accepted

Answered
Filling NaN void in polar plot
What if you <https://www.mathworks.com/matlabcentral/fileexchange/45952 draw a gray circle> the size of your polar graph, then p...

7 years ago | 0

| accepted

Answered
How to check a GPS coordinate is located on a road?
Here's a quick way to do it. Below I'm using standard sample data that comes with the Mapping Toolbox, so you should be able to ...

7 years ago | 1

| accepted

Answered
Error using gcm?
It looks like another plot was initialized or clicked on after calling |axesm|, because this should work just fine: figure...

7 years ago | 0

Answered
Display lat lon on a variable
See also <https://www.mathworks.com/help/matlab/ref/heatmap.html |heatmap|>.

7 years ago | 0

Answered
is it possible to create Geolocation shape (shp) file using matlab?
If you have the Mapping Toolbox you can use <https://www.mathworks.com/help/map/ref/shapewrite.html |shapewrite|>.

7 years ago | 0

| accepted

Answered
Display lat lon on a variable
If the cape data is already a 41x41 grid, I believe Claudio's suggestion of using |meshgrid| and |griddata| lines are unnecessar...

7 years ago | 0

Answered
Plot time-Frequency for mp3.
If you have the signal processing toolbox, spectrogram(y,'yaxis')

7 years ago | 1

| accepted

Submitted


stipple
Easily apply stippling (or hatchfill) to a plot.

7 years ago | 8 downloads |

5.0 / 5
Thumbnail

Answered
Is equality == available in Matlab 2017 ?
I think you want <https://www.mathworks.com/help/matlab/ref/isequal.html |isequal|>.

7 years ago | 0

Answered
Hourly variation of wind for each month, using Quiver
A few points: 1. Instead of this: [ANHO, MES, DIA, HORA, mn, s] = datevec(TIEMPO); %delete useless variables clear...

7 years ago | 0

Answered
How can I do a drawing of this shape؟
It looks like a <https://www.mathworks.com/matlabcentral/fileexchange/49040-pcolor-in-polar-coordinates polar pcolor plot> , whe...

7 years ago | 0

| accepted

Answered
how can ı write opposite of while loop
Just add a ~ to whatever statement you're using for the while loop. So instead of while a==b ... end You could ...

7 years ago | 0

Answered
Circular Indexing of Array
If you have lat,lon grids corresponding to your matrix Z, try using the attached function to recenter like this: [lat,lon,...

7 years ago | 0

Answered
How to read GeoTiff with multiple images?
Maybe you can use |imread| and then use |geotiffinfo| for the georeferencing information?

7 years ago | 0

Answered
Move mlabel positions off axis
How is this? setm(gca,'plabellocation',10,'labelrotation','on') The |'plabellocation'| is poorly named, but it means th...

7 years ago | 1

| accepted

Answered
Adding India boundary to a figure
Alternatively, if you don't have Matlab's Mapping Toolbox you can use my <https://www.mathworks.com/matlabcentral/fileexchange/5...

7 years ago | 0

| accepted

Answered
How do I change my display settings/potentially use a data format that will allow me to view lat/lon coordinates without any sort of scientific notation/engineering notation?
You'll have to be a bit more specific about what you're trying to accomplish. * If you want to change how many digits are di...

7 years ago | 0

Answered
How to contour plot over large negative and positive values?
Can you simply do contour(x,y,log(z),log(clines))

7 years ago | 0

Answered
How can I remove shading from regions outside my domain?
It looks like the detrend call should be inside the loop, because currently it's operating down dimension 1 of the data rather t...

7 years ago | 0

Answered
How can I plot polar stereographic projection?
One option is to use <https://www.mathworks.com/matlabcentral/fileexchange/63324 Arctic Mapping Tools for Matlab>, which include...

7 years ago | 1

Discussion


What makes a Toolbox a Toolbox, and how is it recognized by Matlab?
By typing |ver| I can see which toolboxes I have: MATLAB Version 9.3 ...

7 years ago | 0

Question


What makes a Toolbox a Toolbox, and how is it recognized by Matlab?
By typing |ver| I can see which toolboxes I have: MATLAB Version 9.3 ...

7 years ago | 3 answers | 5

3

answers

Answered
Curve fitting to a sinusoidal function
I turned this into a function called <https://www.mathworks.com/matlabcentral/fileexchange/68273 |sinefit|> for climatological d...

7 years ago | 2

Answered
Predicting Weather Temperatures Using Sinusoidal Least-Squares Fit
I wrote some functions including one called <https://www.mathworks.com/matlabcentral/fileexchange/68273 |sinefit|> to do this fo...

7 years ago | 0

Answered
Combine scatter3 with a map plot?
You can do the coordinate transformation yourself and plot over a map pretty easily. First, make the base map just as if you wer...

7 years ago | 0

Answered
How do I add a legend to a pcolorm map plot?
When you call legend(h, legends); the |h| refers only to the handle of the |pcolorm| object, so |h| is the only item th...

7 years ago | 0

Answered
Patch with holes
There's now a way to do this with standard Matlab functions. Starting with R2017b, the new <https://www.mathworks.com/help/matla...

7 years ago | 4

Submitted


Grounding Line Migration from Konrad et al., 2018
A simple function to import grounding line migration data from Konrad et al., 2018

7 years ago | 1 download |

0.0 / 5
Thumbnail

Load more