1
0
Fork
You've already forked stackplots
0
Stack Matlab subplots in mxn format with overlapping axes
  • MATLAB 100%
Find a file
2018年01月15日 12:27:58 +02:00
.gitignore Ignore asv files 2017年09月04日 20:28:33 +03:00
LICENSE LICENSE 2017年09月04日 20:27:15 +03:00
README.md Add readme 2017年09月04日 20:38:41 +03:00
stacked.png Add example plots 2017年09月04日 20:36:14 +03:00
stackplots.m Set LaTeX intepr 2018年01月15日 12:27:58 +02:00
test_stackplots.m Stack Matlab subplots in mxn format with overlapping axes 2017年09月04日 20:23:05 +03:00
unstacked.png Add example plots 2017年09月04日 20:36:14 +03:00

stackplots

Stack Matlab subplots in mxn format with overlapping axes.

Example

Turns this

unstacked

into this

stacked.

Usage

INPUTS:

  • fig -- figure with mxn subplots
  • m -- number of rows
  • n -- number of columns

PARAMETERS:

  • xlabel -- global x axis label
  • ylabel -- global y axis label

Sample call

stackplots(gcf,m,n);

to be used on a figure containing mxn subplots.

Have a look at the test script for a full example.