This file contains hidden or 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
| % Displays a given text in the console and also appends it into a generic | |
| % log file. | |
| % A specific folder is created for all such log files. | |
| % The log file is located in your current MATLAB path, in a new folder | |
| % called "log". | |
| % You can specifiy the log file by giving your log a unique ID. These ids | |
| % are then grouped together and displayed in a single file. | |
| % | |
| % Works best for cases where you can't print to the console (eg. worker | |
| % threads), but still need output to check later. |