photo

Kelly Kearney


Last seen: 3 meses hace Con actividad desde 2006

Followers: 9   Following: 0

Mensaje

Professional Interests: ocean biogeochemistry, ecosystem modeling

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

Estadística

All
MATLAB Answers

12 Preguntas
641 Respuestas

File Exchange

25 Archivos

CLASIFICACIÓN
66
of 300.369

REPUTACIÓN
2.779

CONTRIBUCIONES
12 Preguntas
641 Respuestas

ACEPTACIÓN DE RESPUESTAS
16.67%

VOTOS RECIBIDOS
721

CLASIFICACIÓN
79 of 20.936

REPUTACIÓN
12.258

EVALUACIÓN MEDIA
4.80

CONTRIBUCIONES
25 Archivos

DESCARGAS
124

ALL TIME DESCARGAS
105817

CLASIFICACIÓN

of 168.436

CONTRIBUCIONES
0 Problemas
0 Soluciones

PUNTUACIÓN
0

NÚMERO DE INSIGNIAS
0

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • 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

Ver insignias

Feeds

Ver por

Respondida
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 meses hace | 0

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

alrededor de 1 año hace | 13

| aceptada

Respondida
'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...

casi 4 años hace | 1

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

casi 4 años hace | 0

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

casi 4 años hace | 0

| aceptada

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

casi 4 años hace | 0

| aceptada

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

casi 4 años hace | 1

| aceptada

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

casi 4 años hace | 1

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

casi 4 años hace | 0

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

casi 4 años hace | 2

| aceptada

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

alrededor de 4 años hace | 0

Respondida
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.) ...

alrededor de 4 años hace | 0

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

alrededor de 4 años hace | 0

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

alrededor de 4 años hace | 2

| aceptada

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

alrededor de 4 años hace | 0

| aceptada

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

alrededor de 4 años hace | 0

| aceptada

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

alrededor de 4 años hace | 0

| aceptada

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

alrededor de 4 años hace | 0

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

alrededor de 4 años hace | 0

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

alrededor de 4 años hace | 2

| aceptada

Respondida
How to reduce data irregularly?
It sounds like you're looking for a line simplification algorithm. These algorithms try to preserve the shape of a polygon or p...

alrededor de 4 años hace | 0

Respondida
How to set plot color for N curves to be a gradient of N color shades between light blue and dark blue (or any other color)?
I suggest reformatting the color-generating function so that instead of returning the entire gradient colormap, it returns only ...

alrededor de 4 años hace | 3

| aceptada

Respondida
Separating 1D data into clusters and counting the amount of elements in each
If the cluster tolerance defines how close points need to be to their nearest neighbor in order to be called a cluster, then you...

alrededor de 4 años hace | 1

| aceptada

Respondida
How to load .mat data from another folder?
The dir command returns the path to each file in the folder field, so you need to append that to recreate the full path names fo...

alrededor de 4 años hace | 2

| aceptada

Respondida
Plotting three axis with one y axis
I like to do this sort of thing the manual way, using my offsetaxis function. It requires a little more manual coding than func...

alrededor de 4 años hace | 1

Respondida
cutline of a triangular meshed graph
The simplest way to do this is to simply interpolate z for a set of points defined by x = 0 and y = the range of your y-data. F...

más de 4 años hace | 0

Respondida
How interp2 deal with edges on bicubic interpolation?
interp2 does not extrapolate. By default, it sets any points outside the data bounds to NaN; you can alternatively choose a dif...

más de 4 años hace | 1

Respondida
Plotting a point in Matlab
If you just want a single point with an arbitrary size, try plot, and play around with the 'markersize' property. Be sure to sp...

más de 4 años hace | 0

Respondida
How to find graph density in MATLAB for a given graph G?
You can simply calculate the number of non-zero elements relative to total elements in the adjacency matrix: nnz(adjacency(G))....

más de 4 años hace | 0

| aceptada

Respondida
How to Create Plot of Weights at Spatial Locations (Connectivity Map)
There aren't any pre-packaged functions to do this, but it should be pretty straightforward to create a function the calculates ...

más de 4 años hace | 0

| aceptada

Cargar más