-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from JAAdrian/develop
New Release v3.3.0
- Loading branch information
Showing
6 changed files
with
136 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
% This script will show how the bar can be programmatically disabled. | ||
% | ||
% Author: J.-A. Adrian (JA) <jensalrik.adrian AT gmail.com> | ||
% | ||
|
||
clear; | ||
close all; | ||
|
||
addpath('..'); | ||
|
||
numIterations = 25; | ||
|
||
|
||
%% This Will Show the Bar | ||
for iIteration = progress(1:numIterations) | ||
pause(0.1); | ||
end | ||
|
||
|
||
%% This Will Disable the Bar | ||
for iIteration = progress(1:numIterations, 'IsActive', false) | ||
fprintf('New iteration...\n'); | ||
pause(0.1); | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters