photo

Kelly Kearney


Last seen: 3개월 전 2006년부터 활동

Followers: 7   Following: 0

메시지

Professional Interests: ocean biogeochemistry, ecosystem modeling

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

통계

All
MATLAB Answers

12 질문
640 답변

File Exchange

25 파일

순위
66
of 298,387

평판
2,777

참여
12 질문
640 답변

답변 채택
16.67%

획득한 표
720

순위
80 of 20,577

평판
12,182

평균 평점
4.80

참여
25 파일

다운로드 수
182

ALL TIME 다운로드 수
105054

순위

of 161,033

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • 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

배지 보기

Feeds

보기 기준

답변 있음
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...

6개월 전 | 13

| 수락됨

제출됨


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

9개월 전 | 다운로드 수: 3 |

0.0 / 5
Thumbnail

제출됨


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

9개월 전 | 다운로드 수: 3 |

0.0 / 5

제출됨


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

9개월 전 | 다운로드 수: 3 |

0.0 / 5

제출됨


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

9개월 전 | 다운로드 수: 1 |

0.0 / 5
Thumbnail

제출됨


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

9개월 전 | 다운로드 수: 1 |

0.0 / 5
Thumbnail

제출됨


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

9개월 전 | 다운로드 수: 1 |

0.0 / 5
Thumbnail

답변 있음
'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...

3년 초과 전 | 1

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

3년 초과 전 | 0

답변 있음
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...

3년 초과 전 | 0

| 수락됨

답변 있음
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 ...

3년 초과 전 | 0

| 수락됨

답변 있음
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...

3년 초과 전 | 1

| 수락됨

답변 있음
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...

3년 초과 전 | 1

답변 있음
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...

3년 초과 전 | 0

답변 있음
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...

3년 초과 전 | 2

| 수락됨

답변 있음
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...

3년 초과 전 | 0

답변 있음
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.) ...

3년 초과 전 | 0

답변 있음
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...

3년 초과 전 | 0

답변 있음
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 ...

3년 초과 전 | 1

| 수락됨

답변 있음
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...

3년 초과 전 | 0

| 수락됨

답변 있음
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...

3년 초과 전 | 0

| 수락됨

답변 있음
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');...

3년 초과 전 | 0

| 수락됨

답변 있음
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...

3년 초과 전 | 0

답변 있음
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...

3년 초과 전 | 0

답변 있음
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...

3년 초과 전 | 2

| 수락됨

제출됨


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

3년 초과 전 | 다운로드 수: 10 |

5.0 / 5
Thumbnail

제출됨


vec2grid
Reshapes vector data to a grid

3년 초과 전 | 다운로드 수: 2 |

5.0 / 5

제출됨


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

3년 초과 전 | 다운로드 수: 2 |

4.8 / 5
Thumbnail

제출됨


inpolygons
Finds points inside multiple polygons, holes possible.

3년 초과 전 | 다운로드 수: 2 |

4.2 / 5
Thumbnail

제출됨


interpshapefile
Determine value at a given location or locations based on data in an ESRI shapefile

3년 초과 전 | 다운로드 수: 2 |

5.0 / 5
Thumbnail

더 보기