https://github.com/johnyf/plot_utils
Vectorized and other plotting MATLAB functions
https://github.com/johnyf/plot_utils
Last synced: 11 days ago
JSON representation
Vectorized and other plotting MATLAB functions
- Host: GitHub
- URL: https://github.com/johnyf/plot_utils
- Owner: johnyf
- License: bsd-2-clause
- Created: 2013-11-16T00:27:25.000Z (over 11 years ago)
- Default Branch: main
- Last Pushed: 2021-08-04T00:56:33.000Z (over 3 years ago)
- Last Synced: 2025-03-25T21:21:27.129Z (28 days ago)
- Language: MATLAB
- Homepage:
- Size: 33.2 KB
- Stars: 8
- Watchers: 2
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Plotting Utilities for MATLAB
## Summary
Vectorized and other convenience plotting functions.
Licensed under the 2-clause BSD.## Description
These functions were developed over time to support my research.
The vectorized ones aim to make vector field codes brief, coordinate-free, clear and readable.
The more interesting are:- `plotmd`, `quivermd`, `textmd` for common 2D and 3D calls, no name headaches with MATLAB calls, clean multi-dim lib, some previously published [here](http://www.mathworks.com/matlabcentral/fileexchange/34731-plot-23d-points) and [here](http://www.mathworks.com/matlabcentral/fileexchange/35224-plot-23d-vectors)
- `vsurf`, `vcontour`, `vcontourf` and `vezsurf`, `vezcontour`, `ezquiver` for vectorized surf, contour plots using a matrix of column vectors (points) and its mesh size
- `plot_scalings` for auto scaling fig based on contents, good for publication-ready results
- `plot_subsample` functions to reduce the number of curve markers, w/o reducing curve fidelity, this aims to avoid huge image files that lead to `PDF` file sizes rejected when uploading to conference servers
- `tex_plot_annot` for `LaTeX` axis labels, title and legend, previously published [here](http://www.mathworks.com/matlabcentral/fileexchange/35141-latex-plot-annotation)
- `plotidy` shorthand to auto-scale, `LaTeX`-annotate and grid at once
- `assign_cmaps` to set different colormaps for two sets of surfaces
- `colorbar_annotated` to add units to the colorbar
- take and restore hold to add graphics objects w/o affecting current fig hold status, previously published [here](http://www.mathworks.com/matlabcentral/fileexchange/36641-take-restore-hold)
- vectorized `grid`, `hold`, `cla`, `view` for managing multiple axes at once, some previously published [here](www.mathworks.com/matlabcentral/fileexchange/36643-vectorized-hold)
- `newax` to create multiple new axes
- `sloc_pie` for [SLOC](http://en.wikipedia.org/wiki/Source_lines_of_code) pie plots of results returned by [`CLOC`](http://cloc.sourceforge.net/)## Installation
Add the directory tree of this package to your MATLAB path.
Some functions have [fex](http://www.mathworks.com/matlabcentral/) dependencies.
No dependency is OS-specific.