Gesendet


aggregate
Group (and apply functions to) values in one matrix based on grouping variables in another

mehr als 3 Jahre vor | 1 Download |

5.0 / 5

Gesendet


legendflex.m: a more flexible, customizable legend
Create a legend with more flexible positioning and labeling capabilities

mehr als 3 Jahre vor | 84 Downloads |

4.8 / 5
Thumbnail

Gesendet


plotboxpos
Returns the position of a plotted axis region

mehr als 3 Jahre vor | 6 Downloads |

4.9 / 5
Thumbnail

Gesendet


boxplot2
An alternative boxplot function

mehr als 3 Jahre vor | 11 Downloads |

4.8 / 5
Thumbnail

Gesendet


Divided edge bundling in Matlab
Calculate and plot graph divided edge bundle pathways for directional network graphs

mehr als 3 Jahre vor | 1 Download |

1.0 / 5
Thumbnail

Gesendet


boundedline.m
Plot one or more lines with a shaded boundary (can represent error, confidence intervals, etc).

mehr als 3 Jahre vor | 49 Downloads |

4.9 / 5
Thumbnail

Gesendet


ecopath_matlab: A Matlab implementation of Ecopath
Reproduces the main mass-balance algorithm from the popular ecosystem modeling tool, Ecopath

mehr als 3 Jahre vor | 1 Download |

0.0 / 5
Thumbnail

Gesendet


contourfcmap: filled contour plot with precise colormap
Creates a filled contour plot, with more precise control over colors than contourf.

mehr als 3 Jahre vor | 12 Downloads |

4.8 / 5
Thumbnail

Gesendet


line2arrow.m
Combines line plotting with annotation arrows.

mehr als 3 Jahre vor | 13 Downloads |

4.0 / 5
Thumbnail

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

mehr als 3 Jahre vor | 0

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

mehr als 3 Jahre vor | 3

| akzeptiert

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

mehr als 3 Jahre vor | 1

| akzeptiert

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

mehr als 3 Jahre vor | 2

| akzeptiert

Gesendet


offsetaxis
Offsets an x- or y-axis from the plotted axis area

mehr als 3 Jahre vor | 8 Downloads |

0.0 / 5
Thumbnail

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

mehr als 3 Jahre vor | 1

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

mehr als 3 Jahre vor | 0

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

mehr als 3 Jahre vor | 1

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

mehr als 3 Jahre vor | 0

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

mehr als 3 Jahre vor | 0

| akzeptiert

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

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
What should be dimension of surf(X,Y,Z) 3D?
You just need to transpose Z: surf(hw, rw, Z')

fast 4 Jahre vor | 0

Beantwortet
How to extract -3 dB diameter from Matrix?
The coordinates of the contour line are saved in the c matrix, albeit in a less than user friendly format. I like using the con...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
Monthly maximum in data
While you could do this with find, using the second output of max is a bit quicker. % Some fake data similar to yours t ...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
Is it possible to convert a heatmap to a Matrix ?
Unlike most Matlab plotting functions, heatmap is annoyingly heavy-handed. It really wants to be used as a quick browsing tool,...

etwa 4 Jahre vor | 0

Beantwortet
How to create isolate nodes in graph?
The easiest way would be to simply add the isolated node to the existing graph: G = graph({'a', 'b', 'c'},{'c', 'a', 'd'}); G ...

etwa 4 Jahre vor | 1

Beantwortet
Changing order of legend entries when lslines are included
The easiest way to be certain your legend labels match up is to pass handles specifically: figure; p = plot([1 2;2 1;3 1;1 4...

mehr als 4 Jahre vor | 1

| akzeptiert

Beantwortet
How to label the x axis of a polar plot?
You can label polar axes with text objects. I find the following positioning works well as a default... you may need to play ar...

mehr als 4 Jahre vor | 0

Beantwortet
Outputting how far down a set of data a set of numbers are in a large data set
If you supply 2 outputs to find, it will return the row and column indices corresponding to each true element: [rowidx, colidx]...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
Legends not matching colors
Are you certain that those are the only plotting commands? Did you perhaps test plot once with hold on, then call your commands...

mehr als 4 Jahre vor | 0

Beantwortet
Can't seem to get the functions to graph properlly
You've chosen a pretty coarse resolution for t. If you change it to something like t = linspace(0,5,100); do you get what yo...

mehr als 4 Jahre vor | 0

Mehr laden