Skip to content

taehoonlee/tfigure

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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');

About

MATLAB figures like ggplot

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages