제출됨


ICESat reference tracks & Antarctic grounding zone structure
Plot ICESat reference tracks and ICESat-derived grounding zone structure for Antarctica.

대략 7년 전 | 다운로드 수: 1 |

0.0 / 5
Thumbnail

제출됨


Antarctic flight planning tools
A few scripts for aerogeophysical navigation

대략 7년 전 | 다운로드 수: 1 |

0.0 / 5

제출됨


RTopo-2
Antarctic bathymetry, ice thickness, and ice surface datasets

대략 7년 전 | 다운로드 수: 1 |

5.0 / 5
Thumbnail

제출됨


Cyclic color map
A constant-lightness cyclic colormap for phase.

대략 7년 전 | 다운로드 수: 5 |

4.8 / 5
Thumbnail

답변 있음
using 'fit' to add a trend line to series of scatter points
That is the correct first-order least-squares fit. But I think in your plot the '.' marker on the far left side is coincident wi...

7년 초과 전 | 0

| 수락됨

질문


2D gaussian filter with a variable sigma
I have a large gridded dataset I'd like to lowpass filter. The catch is, need to specify a different sigma value for each pixel ...

7년 초과 전 | 답변 수: 1 | 0

1

답변

답변 있음
How can I get a mask matrix from a fill?
Perhaps you want to use inpolygon to get a mask of grid cells within the polygon?

7년 초과 전 | 0

답변 있음
How can I make an image with both ocean and land information?
This is very easy with the Climate Data Toolbox for Matlab! First, plot the base image with earthimage, then overlay it with a p...

7년 초과 전 | 0

답변 있음
How can I interpolate an ocean's variable without interpolate the continents?
You can use the island function in the Climate Data Toolbox for Matlab to determine which grid cells are land and which ones are...

7년 초과 전 | 0

답변 있음
Can anyone help plot the India map showing land and oceans, without using mapping toolbox ??
For this you can use the earthimage function in the Climate Data Toolbox for Matlab. It does not require the Mapping Toolbox.

7년 초과 전 | 0

| 수락됨

답변 있음
How to perform EOF
I think the easiest way is with the eof function in the Climate Data Toolbox for Matlab. Check out the documentation, it describ...

7년 초과 전 | 0

답변 있음
Globe display issue - need opaque sub-surface
For the globe functions in the Climate Data Toolbox for Matlab I had to include one called globefill, for that very purpose. If ...

7년 초과 전 | 0

답변 있음
How can you plot lines of latitude and longitude on a globe without using the mapping toolbox ?
I turned my answer into a collection of functions called globeplot, globesurf, globegraticule, globeborders, etc. which you can ...

7년 초과 전 | 1

답변 있음
how to write data on grid in a plot?
That looks like a heatmap chart. However, a 181x361 grid of text values will probably be illegible. On most screens that's only ...

7년 초과 전 | 0

답변 있음
How to calculate the area of each grid cell?
The easiest way is to use the cdtarea function in the Climate Data Toolbox for Matlab. For gridded coordinates Lat,Lon, syntax i...

7년 초과 전 | 2

| 수락됨

답변 있음
Plot a point of my gridded map
If you know the grid indices, it would just be sst1 = squeeze(sst(row,col,:)); where the corresponding geo coordinates would...

7년 초과 전 | 0

답변 있음
Writing a loop to calculate a seasonal cycle and then plot the seasonal cycle?
Check out the season and climatology functions in the Climate Data Toolbox for Matlab. The functions make it easy to extract sea...

7년 초과 전 | 1

답변 있음
Can't plot a trendline
Check out the polyplot function in the Climate Data Toolbox. If you define the x and y data, plotting a least-squares trend line...

7년 초과 전 | 0

답변 있음
Help with plotting world grid climate variable lat/lons
Hi Macarena, I wrote the recenter function in the Cimate Data Toolbox to do exactly what you want to do. It lets you move a ...

7년 초과 전 | 0

답변 있음
How to apply hatched region to a polar map
For anyone who wants to do this with Antarctic Mapping Tools, you may be able to use my stipple function. For a lat,lon grid and...

7년 초과 전 | 2

제출됨


tile
Easily determine indices to break a large 2D matrix into smaller tiles.

7년 초과 전 | 다운로드 수: 1 |

0.0 / 5
Thumbnail

답변 있음
How can I create a gif that plays only once?
Use my gif function! Just type gif('myfile.gif','LoopCount',1) for the first frame and then gif to write each subse...

7년 초과 전 | 1

답변 있음
How do I filter my data points without using smoothdata?
What about movmean to smooth the data, then interp1 to pick out the 5 points you want?

7년 초과 전 | 0

답변 있음
How do I read an image file in .fits format and convert it to.png or .tiff?
You should be able to read it with fitsread and then save it to png or tiff with imwrite.

7년 초과 전 | 1

답변 있음
How to create a only a time vector starting 13:15:00 to 20:59:00 with 1 minute interval? R2016a
This is a datetime for today, starting at 13:15 and going to 20:59, in 1 minute [1/(24*60)] intervals. t = datetime(2018,12,11...

7년 초과 전 | 0

| 수락됨

답변 있음
time series comparison metric
The simplest way is just to compare the standard deviations of each signal: st1 = std(d1); st2 = std(d2); Although that ap...

7년 초과 전 | 1

| 수락됨

답변 있음
Make x axis ticks and extent match
You're on the right track. If you want all the xticks to be the same, then you'll have to set them all to the same values. Curre...

7년 초과 전 | 0

답변 있음
Why the EOF gives the total of 99.9
This line in caleof is the culprit: expvar(iN)=fix((dsum(iN)*100/sum(dsum))*10)/10; The fix function rounds down. The part th...

7년 초과 전 | 0

답변 있음
How do I create a color bar to correspond to my jet color scheme?
Try this: Plot some data: surf(peaks) Change the colormap*: colormap(jet) Add a colorbar and put a label on it: cb = ...

7년 초과 전 | 0

| 수락됨

답변 있음
creating subplot from function
Looks like instead of |x| you meant to call that variable |fname|? If so, something like this: fname = {'fname1.txt','fname...

7년 초과 전 | 0

더 보기