├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── ProgressBar.m ├── README.md ├── demos ├── basicUseCases.m ├── countProcessedBytes.m ├── disableBar.m ├── nestedProgressBars.m ├── nonUnicodeProgressBar.m ├── parallelSetup.m ├── passSuccessInfo.m ├── printInfoDuringRun.m └── titleBanner.m ├── images ├── example1.gif └── example2.gif ├── progress.m ├── tests ├── ProgressBar_test.m └── progress_test.m └── updateParallel.m /.gitignore: -------------------------------------------------------------------------------- 1 | *.m~ 2 | *.asv 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAAdrian/MatlabProgressBar/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAAdrian/MatlabProgressBar/HEAD/LICENSE -------------------------------------------------------------------------------- /ProgressBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAAdrian/MatlabProgressBar/HEAD/ProgressBar.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAAdrian/MatlabProgressBar/HEAD/README.md -------------------------------------------------------------------------------- /demos/basicUseCases.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAAdrian/MatlabProgressBar/HEAD/demos/basicUseCases.m -------------------------------------------------------------------------------- /demos/countProcessedBytes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAAdrian/MatlabProgressBar/HEAD/demos/countProcessedBytes.m -------------------------------------------------------------------------------- /demos/disableBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAAdrian/MatlabProgressBar/HEAD/demos/disableBar.m -------------------------------------------------------------------------------- /demos/nestedProgressBars.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAAdrian/MatlabProgressBar/HEAD/demos/nestedProgressBars.m -------------------------------------------------------------------------------- /demos/nonUnicodeProgressBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAAdrian/MatlabProgressBar/HEAD/demos/nonUnicodeProgressBar.m -------------------------------------------------------------------------------- /demos/parallelSetup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAAdrian/MatlabProgressBar/HEAD/demos/parallelSetup.m -------------------------------------------------------------------------------- /demos/passSuccessInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAAdrian/MatlabProgressBar/HEAD/demos/passSuccessInfo.m -------------------------------------------------------------------------------- /demos/printInfoDuringRun.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAAdrian/MatlabProgressBar/HEAD/demos/printInfoDuringRun.m -------------------------------------------------------------------------------- /demos/titleBanner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAAdrian/MatlabProgressBar/HEAD/demos/titleBanner.m -------------------------------------------------------------------------------- /images/example1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAAdrian/MatlabProgressBar/HEAD/images/example1.gif -------------------------------------------------------------------------------- /images/example2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAAdrian/MatlabProgressBar/HEAD/images/example2.gif -------------------------------------------------------------------------------- /progress.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAAdrian/MatlabProgressBar/HEAD/progress.m -------------------------------------------------------------------------------- /tests/ProgressBar_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAAdrian/MatlabProgressBar/HEAD/tests/ProgressBar_test.m -------------------------------------------------------------------------------- /tests/progress_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAAdrian/MatlabProgressBar/HEAD/tests/progress_test.m -------------------------------------------------------------------------------- /updateParallel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAAdrian/MatlabProgressBar/HEAD/updateParallel.m --------------------------------------------------------------------------------