Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/taehoonlee/tfigure
MATLAB figures like ggplot
https://github.com/taehoonlee/tfigure
Last synced: 30 days ago
JSON representation
MATLAB figures like ggplot
- Host: GitHub
- URL: https://github.com/taehoonlee/tfigure
- Owner: taehoonlee
- Created: 2015-03-10T04:57:59.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-03-10T07:13:21.000Z (over 9 years ago)
- Last Synced: 2023-02-28T15:56:08.258Z (over 1 year ago)
- Language: Matlab
- Size: 141 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# tfigure
MATLAB figures like ggplot in R
Copyright (c) 2015 Taehoon Lee# Functions
ggPalette: colormap of the ggplot in R.
tbar: simple variant of the built-in bar function.
tboxplot: simple variant of the built-in bar function.
tplot: simple variant of the built-in plot function.# Examples
t = (0:0.1:3) * pi;
X = [0.6 * sin(t); 0.8 * sin(t+5)+0.1; sin(t+10)+0.2];
figure;
subplot(1,3,1), tplot(t, X);
subplot(1,3,2), tbar(sum(abs(X),2));
subplot(1,3,3), tboxplot(X');