Statistica
RANK
66
of 297.429
REPUTAZIONE
2.769
CONTRIBUTI
12 Domande
640 Risposte
ACCETTAZIONE DELLE RISPOSTE
16.67%
VOTI RICEVUTI
718
RANK
79 of 20.432
REPUTAZIONE
12.135
VALUTAZIONE MEDIA
4.80
CONTRIBUTI
25 File
DOWNLOAD
195
ALL TIME DOWNLOAD
104754
RANK
of 158.863
CONTRIBUTI
0 Problemi
0 Soluzioni
PUNTEGGIO
0
NUMERO DI BADGE
0
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
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...
5 mesi fa | 13
| accettato
Inviato
skillstats.m
Calculate (and plot) skill statistics for model validation
7 mesi fa | 2 download |

Inviato
shapeprjread.m: Read a projected shapefile
Read a projected shapefile into Matlab
7 mesi fa | 3 download |
Inviato
minmax.m
Returns minimum and maximum value across all dimensions of the given array
7 mesi fa | 3 download |
Inviato
labelaxes.m: Quick placement of text around axes
Add text in or adjacent to axes using directional locations (e.g., north, southoutside, northeast)
7 mesi fa | 1 download |

Inviato
mergeaxes.m and subgridaxes.m: Axis merge/split tools
Create new axes that occupies the space of previous ones
7 mesi fa | 1 download |

Inviato
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
7 mesi fa | 1 download |

'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...
oltre 3 anni fa | 1
Accuracy of polygon approximation
Other possible metrics commonly used to measure the error of a polygon simplification algorithm involve comparing the perimeter ...
oltre 3 anni fa | 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...
oltre 3 anni fa | 0
| accettato
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 ...
oltre 3 anni fa | 0
| accettato
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...
oltre 3 anni fa | 1
| accettato
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...
oltre 3 anni fa | 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...
oltre 3 anni fa | 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...
oltre 3 anni fa | 2
| accettato
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...
oltre 3 anni fa | 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.) ...
oltre 3 anni fa | 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...
oltre 3 anni fa | 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 ...
oltre 3 anni fa | 1
| accettato
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...
oltre 3 anni fa | 0
| accettato
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...
oltre 3 anni fa | 0
| accettato
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');...
oltre 3 anni fa | 0
| accettato
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...
oltre 3 anni fa | 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...
oltre 3 anni fa | 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...
oltre 3 anni fa | 2
| accettato
Inviato
Color Palette Tables (.cpt) for Matlab
Create and apply GMT-style colormaps in Matlab
oltre 3 anni fa | 11 download |

Inviato
bufferm2
Creates a buffer zone around or inside a polygon or polygons
oltre 3 anni fa | 2 download |

Inviato
inpolygons
Finds points inside multiple polygons, holes possible.
oltre 3 anni fa | 2 download |

Inviato
interpshapefile
Determine value at a given location or locations based on data in an ESRI shapefile
oltre 3 anni fa | 2 download |
