photo

Kelly Kearney


Last seen: 3 Monate vor Aktiv seit 2006

Followers: 9   Following: 0

Nachricht

Professional Interests: ocean biogeochemistry, ecosystem modeling

Programming Languages:
Python, R, MATLAB, Fortran
Spoken Languages:
English
Pronouns:
She/her

Statistik

All
MATLAB Answers

12 Fragen
641 Antworten

File Exchange

25 Dateien

RANG
66
of 300.364

REPUTATION
2.779

BEITRÄGE
12 Fragen
641 Antworten

ANTWORTZUSTIMMUNG
16.67%

ERHALTENE STIMMEN
721

RANG
79 of 20.934

REPUTATION
12.258

DURCHSCHNITTLICHE BEWERTUNG
4.80

BEITRÄGE
25 Dateien

DOWNLOADS
125

ALL TIME DOWNLOADS
105812

RANG

of 168.407

BEITRÄGE
0 Probleme
0 Lösungen

PUNKTESTAND
0

ANZAHL DER ABZEICHEN
0

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Highlights

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • 36 Month Streak
  • Thankful Level 1
  • Explorer
  • Personal Best Downloads Level 4
  • Editor's Pick
  • First Review
  • 5-Star Galaxy Level 5
  • GitHub Submissions Level 3
  • First Submission
  • Guiding Light
  • Revival Level 1
  • Knowledgeable Level 5

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
modifying vertices of geopolyshape
Old question, but I was working through this same problem when needing to reproject a mappolyshape. It appears that the vertex ...

3 Monate vor | 0

Beantwortet
Why am I getting the error "Array indices must be positive integers or logical values"?
MATLAB uses 1-based indexing, so the first element is accessed with index 1, not 0. This means array indices must be positive i...

etwa ein Jahr vor | 13

| akzeptiert

Gesendet


skillstats.m
Calculate (and plot) skill statistics for model validation

etwa ein Jahr vor | 1 Download |

0.0 / 5
Thumbnail

Gesendet


shapeprjread.m: Read a projected shapefile
Read a projected shapefile into Matlab

etwa ein Jahr vor | 1 Download |

0.0 / 5

Gesendet


minmax.m
Returns minimum and maximum value across all dimensions of the given array

etwa ein Jahr vor | 1 Download |

0.0 / 5

Gesendet


labelaxes.m: Quick placement of text around axes
Add text in or adjacent to axes using directional locations (e.g., north, southoutside, northeast)

etwa ein Jahr vor | 1 Download |

0.0 / 5
Thumbnail

Gesendet


mergeaxes.m and subgridaxes.m: Axis merge/split tools
Create new axes that occupies the space of previous ones

etwa ein Jahr vor | 1 Download |

0.0 / 5
Thumbnail

Gesendet


plotgrid.m: Set up (and plot to) a grid of axes
Sets up a grid of axes and optionally plots data from a cell array to that grid

etwa ein Jahr vor | 1 Download |

0.0 / 5
Thumbnail

Beantwortet
'splitapply' syntax to index multiple columns in a timetable
I really wish splitapply did allow you to pass a table as input and apply the same function to each column of that input. Unfor...

fast 4 Jahre vor | 1

Beantwortet
Accuracy of polygon approximation
Other possible metrics commonly used to measure the error of a polygon simplification algorithm involve comparing the perimeter ...

fast 4 Jahre vor | 0

Beantwortet
group by indexing discontinuous timetable
Here's one possible solution; it first checks for criteria 2 and then goes back to verify #1. You can probably do it all in one...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
define different color for area
I don't think an area plot allows for multiple colors within a single area object. You could accomplish the color change using ...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
Problem adding a field to a struct via function
Your function doesn't return any output. Modify it to do so: function MeshInfo = generateTriangleCount(MeshInfo) SizeTriangle...

fast 4 Jahre vor | 1

| akzeptiert

Beantwortet
Name Contour levels outside plot
Using builtin contour-related functions... no, not really. Contour labels are one of the least customizable parts of Matlab gra...

fast 4 Jahre vor | 1

Beantwortet
Combine data from multiple netCDF files
What are the dimensions of the total dataset? And do you really need to hold the entire thing in memory at once? I think you...

fast 4 Jahre vor | 0

Beantwortet
How to plot a 3D cube based if i have the coordinates of the 8 surrounding nodes?
To expand on Star Strider's answer, in your example, you've specified a list of coordinates, but you haven't told Matlab how the...

fast 4 Jahre vor | 2

| akzeptiert

Beantwortet
How to plot a map like this in Matlab?
Do you want to replicate that plot exactly, or just the general concept? If the former, I'd recommend looking at m_map, since i...

fast 4 Jahre vor | 0

Beantwortet
Matrix math with Datetime arrays
As you discovered, implicit expansion of is only supported for numerical arrays (though I'm not sure where that's documented.) ...

fast 4 Jahre vor | 0

Beantwortet
Timetable_Averaging values from each month
I don't believe you can use retime to build a climatology; for that, I usually use the splitapply function. Unfortunately, spli...

etwa 4 Jahre vor | 0

Beantwortet
A simple scatter plot from a 2d matrix
Are any of these what you're looking for? a1=rand(5,1)*3; a2=rand(5,1)*3; [x1, x2] = meshgrid(sort(a1),sort(a2)); % sort for ...

etwa 4 Jahre vor | 2

| akzeptiert

Beantwortet
How do I create a for loop with fields of structures?
In your current code, you're saving over P on each iteration of the loop. Instead, save to an array: nt= length(Global_Data.Fi...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
Multiple axes in a subplot
You can achieve the multiple-axis look by layering different axes on top of each other. There are several File Exchange entries...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
transform text data like {'1951:Q4'} with quarterly dates to number x axis of a plot
I'd recommend converting your fdate cell array to an array of datetimes: fdate = datetime(fdate, 'InputFormat', 'uuuu:''Q''Q');...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
How to plot coordinate data to appear solid with lighting effect?
The following example shows a relatively simple way to create patch surfaces that connect each circle to the adjacent one (assum...

etwa 4 Jahre vor | 0

Beantwortet
How do I select data based on multiple indexes?
Assuming that the landwatermask, PerpSurface_saturationflag, and ParSurface_saturationflag matrices are all the same size, and t...

etwa 4 Jahre vor | 0

Beantwortet
Spread monthly data into days
One way to do the expansion... convert your monthly dates to the first of each month, then use dateshift to check which month ea...

etwa 4 Jahre vor | 2

| akzeptiert

Gesendet


Color Palette Tables (.cpt) for Matlab
Create and apply GMT-style colormaps in Matlab

etwa 4 Jahre vor | 9 Downloads |

5.0 / 5
Thumbnail

Gesendet


vec2grid
Reshapes vector data to a grid

etwa 4 Jahre vor | 4 Downloads |

5.0 / 5

Gesendet


bufferm2
Creates a buffer zone around or inside a polygon or polygons

etwa 4 Jahre vor | 1 Download |

4.8 / 5
Thumbnail

Gesendet


inpolygons
Finds points inside multiple polygons, holes possible.

etwa 4 Jahre vor | 1 Download |

4.2 / 5
Thumbnail

Mehr laden