├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── VERSION ├── demos └── demo_superbar.m ├── images ├── logo.eps └── logo.png ├── superbar ├── superbar.m └── supererr.m └── tests ├── test_superbar.m └── test_supererr.m /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/superbar/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/superbar/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/superbar/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/superbar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/superbar/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.5.0 2 | -------------------------------------------------------------------------------- /demos/demo_superbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/superbar/HEAD/demos/demo_superbar.m -------------------------------------------------------------------------------- /images/logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/superbar/HEAD/images/logo.eps -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/superbar/HEAD/images/logo.png -------------------------------------------------------------------------------- /superbar/superbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/superbar/HEAD/superbar/superbar.m -------------------------------------------------------------------------------- /superbar/supererr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/superbar/HEAD/superbar/supererr.m -------------------------------------------------------------------------------- /tests/test_superbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/superbar/HEAD/tests/test_superbar.m -------------------------------------------------------------------------------- /tests/test_supererr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/superbar/HEAD/tests/test_supererr.m --------------------------------------------------------------------------------