Kelly Kearney
University of Washington/NOAA Alaska Fisheries Science Center
Professional Interests: ocean biogeochemistry, ecosystem modeling
Content Feed
已回答
'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...
'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...
2 years 前 | 1
已回答
Accuracy of polygon approximation
Other possible metrics commonly used to measure the error of a polygon simplification algorithm involve comparing the perimeter ...
Accuracy of polygon approximation
Other possible metrics commonly used to measure the error of a polygon simplification algorithm involve comparing the perimeter ...
2 years 前 | 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...
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...
2 years 前 | 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 ...
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 ...
2 years 前 | 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...
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...
2 years 前 | 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...
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...
2 years 前 | 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...
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...
2 years 前 | 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...
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...
2 years 前 | 1
| 已接受
已回答
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...
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...
2 years 前 | 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.) ...
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.) ...
2 years 前 | 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...
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...
2 years 前 | 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 ...
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 ...
2 years 前 | 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...
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...
2 years 前 | 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...
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...
2 years 前 | 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');...
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');...
2 years 前 | 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...
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...
2 years 前 | 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...
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...
2 years 前 | 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...
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...
2 years 前 | 2
| 已接受
已提交
Color Palette Tables (.cpt) for Matlab
Create and apply GMT-style colormaps in Matlab
2 years 前 | 24 次下载 |

已提交
interpshapefile
Determine value at a given location or locations based on data in an ESRI shapefile
2 years 前 | 1 次下载 |

已提交
aggregate
Group (and apply functions to) values in one matrix based on grouping variables in another
2 years 前 | 5 次下载 |
已提交
legendflex.m: a more flexible, customizable legend
Create a legend with more flexible positioning and labeling capabilities
2 years 前 | 77 次下载 |

已提交
Divided edge bundling in Matlab
Calculate and plot graph divided edge bundle pathways for directional network graphs
2 years 前 | 2 次下载 |

已提交
boundedline.m
Plot one or more lines with a shaded boundary (can represent error, confidence intervals, etc).
2 years 前 | 81 次下载 |

已提交
ecopath_matlab: A Matlab implementation of Ecopath
Reproduces the main mass-balance algorithm from the popular ecosystem modeling tool, Ecopath
2 years 前 | 1 次下载 |
