Software Listing of Author : "Rafael Oliveira"
- Display progress, pause or stop a time-consuming loop
- License: Shareware
- Price:


This class creates a small pause/stop window, that allows you to either abort a running loop or pause the execution and create breakpoints or change/correct mistakes in the code (this works for files that are not in the stack from where stop.requested is called). It can be used in different ways: - Control the loop execution: while ~stop.requested %do your heavy calculations here end stop.close; - abort execution in the middle for i = 1:100 %do your heavy calculations here if stop.requested stop.close; error('Stop requested') end end - inform the current progress iter = 1; maxIter = 1000; while iter<maxIter || stop.requested %do your heavy calculations here stop.setStatus('Running...',iter/maxIter); end stop.close; In loops with many iterations, you can also avoid updating the screen too often (and reduce the...
- Publisher: Rafael Oliveira
- Date Released: 13-06-2013
- Download Size: 10 KB
- Download
- Platform: Matlab, Scripts
- Multiple Monitors Screen Capture
- License: Shareware
- Price:


Captures the screen on every monitor you have. This function captures a screenshot of every monitor available in the system, and returns them into a cell array. Usage: %return a cell array with one image for each monitor: screens = captureScreen; %Capture each monitor image and displays them: screens = captureScreen(true);
- Publisher: Rafael Oliveira
- Date Released: 18-04-2013
- Download Size: 10 KB
- Download
- Platform: Matlab, Scripts
- XFOIL - MATLAB interface
- License: Freeware
- Price: 0.00


I developed this interface some time ago, so I finally decided to refine and make it available here. It provides an interface between XFOIL and MATLAB, creating the files required by XFOIL to run, and reading the results back in an easy to access polar structure. As the goal was to perform airfoil optimization, this interface is capable of parallel execution, so that you can create multiple instances and run all at the same time, without blocking MATLAB. Also, it is possible to hide the plotting window, so XFOIL will not interrupt your work-flow while it is running. A simple example script using an NACA 23012 is provided, showing the main features of the interface. XFOIL is not included on this package, but the class will download and extract it for you automatically in case the XFOIL executable is not available in your path.
- Publisher: Rafael Oliveira
- Date Released: 07-02-2013
- Download Size: 10 KB
- Download
- Platform: Matlab, Scripts
