Software Listing of Author : "Kesh Ikuma"
- Busy Dialog
- License: Shareware
- Price:


H = BUSYBAR('message', property, value, property, value, ...) creates and displays a dialog box displaying 'message'. The handle to the waitbar figure is returned in H. Optional arguments property and value allow to set corresponding waitbar figure properties. The dialog window is not closable, and it should be closed in the calling program by executing delete(H). As an "emergency" alternative, the dialog can be closed forcibly by pressing ctrl-c. To avoid such situation, the use of TRY-CATCH block is recommended (as shown below). Example: h = busybar('Please wait...','My Program'); try % computation here % catch delete(h); end delete(h);
- Publisher: Kesh Ikuma
- Date Released: 09-06-2013
- Download Size: 10 KB
- Download
- Platform: Matlab, Scripts
- contourcs: to obtain contourc output as a struct array
- License: Shareware
- Price:


MATLAB CONTOURC returns a contour matrix that summarizes the contour lines. Although compact, it takes an extra step to decipher the matrix. CONTOURCS wraps CONTOURC function to return the content of the contour matrix as an easily accessible structure array. S = CONTOURCS(Z) returns a struct array with fields: S(n).Level - level of the n-th contour line S(n).Length - number of points for the n-th contour line S(n).X - X coordinate vector (S(n).Length samples) S(n).Y - Y coordinate vector (S(n).Length samples) CONTOURCS supports all the CONTOURC input argument forms.
- Publisher: Kesh Ikuma
- Date Released: 01-02-2013
- Download Size: 10 KB
- Download
- Platform: Matlab, Scripts
- EPS Utility Toolbox
- License: Shareware
- Price:


A set of functions to generate publisher-happy EPS images EPS Utility Toolbox consists of several functions to generate EPS files that best conforms with the standard: http://partners.adobe.com/public/developer/ps Run epssetup.m first to set up the toolbox. Toolbox Setup and Configuration epssetup - Run this first to use this toolbox epsfontpath - Get/set postscript font search path epsfontalias - Get/set postscript font aliases epsfontlist - Get the list of postscript fonts in the search path EPS File Generation and Conversion epswrite - Save figure as an EPS image (with fixes) eps2raster - Convert EPS image to PNG, BMP, JPEG, or TIFF image (req. Ghostscript) EPS File Manipulation epsfixfonts - Make MATLAB-generated EPS file more conformed to the EPS standard epsembedfont - Embed/de-embed postscript fonts...
- Publisher: Kesh Ikuma
- Date Released: 27-02-2013
- Download Size: 102 KB
- Download
- Platform: Matlab, Scripts
- glinkaxes: interactive linkaxes
- License: Shareware
- Price:


GLINKAXES is a wrapper function for the built-in LINKAXES function. Prior to calling LINKAXES function, GLINKAXES accepts user mouse clicks to select axes to synchronize. There are 4 possible ways to call this function: GLINKAXES or GLINKAXES(OPTION) to choose as many axes as desired (terminate selection by pressing ENTER key with the focus on a figure window). GLINKAXES(N) or GLINKAXES(N,OPTION) to choose (up to) N axes. Press ENTER key for less than N. OPTION argument is directly passed to LINKAXES and must be one of 'x','y','xy',or 'none'. This function works on Matlab R2008a or later. (It uses a OnCleanup function which is introduced in R2008a.) Revision: Rev.1 (4/14/11) - GLINKAXES(OPTION) calling option parsing bug fix
- Publisher: Kesh Ikuma
- Date Released: 07-03-2013
- Download Size: 10 KB
- Download
- Platform: Matlab, Scripts
- inputEmu: Keyboard & Mouse Emulator
- License: Shareware
- Price:


INPUTEMU emulates user inputs via keyboard and mouse. For example, executing the following line in the Matlab command window inputemu({... 'key_normal','Hello WorldENTER' 'right_down',[];'right_up' []}') % <= notice the transpose! yields in "Hello World" typed and executed in MATLAB command window (followed by an obvious error message) and right mouse click menu. For the detailed instructions, please run 'help inputemu'. This function is a successor to my earlier submission JMOUSEEMU (linked below) with several notable changes: * Added keyboard input support * Changed input argument order * Multiple-command CMDS input argument transposed (i.e., commands defined in columns not in rows) * Removed support for Matlab HG specification Also, as a future enhancement, I am planning to support non-US keyboards. The current version...
- Publisher: Kesh Ikuma
- Date Released: 27-06-2013
- Download Size: 10 KB
- Download
- Platform: Matlab, Scripts
- MSOCOLOR: Microsoft Office Theme Colors
- License: Shareware
- Price:


MSOCOLOR retrieves Microsoft Office Theme color schemes. MSOCOLOR is intended simplify the creation of MATLAB figures that are color-matched to MS Office documents. MSOCOLOR is only compatible with MS Office 2007 or later (to the authors knowledge) and uses MATLAB's .NET interface and DOM XML reader. MSOCOLOR('theme') reads color data from 'theme.xml' file in "Theme Colors" folders within (both global and user) Office Templates folders. The default theme (which is not given as a file) can be retrieved by specifying 'Office'. There are 40 additional built-in themes in MS Office 2010: Adjacency, Angles, Apex, Apothecary, Aspect, Austin, Black Tie, Civic, Clarity, Composite, Concourse, Couture, Elemental, Equity, Essential, Executive, Flow, Foundry, Grayscale, Grid, Hardcover, Horizon, Median, Metro, Module, Newsprint, Opulent, Oriel,...
- Publisher: Kesh Ikuma
- Date Released: 16-05-2013
- Download Size: 10 KB
- Download
- Platform: Matlab, Scripts
- Relative Filename
- License: Shareware
- Price:


RELFILE(FILE,PATH) converts full filename FILE to a relative filename with respect to PATH. REL2FULLFILE(RELFILE,PATH) converts relative filename RELFILE to full filename using PATH as the base path. Examples: relfile('C:Program FilesMATLABR2009abinmatlab.exe','C:Program FilesMATLABR2009a') returns '.binmatlab.exe' and rel2fullfile('.binmatlab.exe','C:Program FilesMATLABR2009a') gets the original path back. relfile('C:Program FilesMATLABR2009abinmatlab.exe','C:Program FilesMATLABR2009atoolboxmatlab') returns '....binmatlab.exe' and rel2fullfile('....binmatlab.exe','C:MATLABtoolboxmatlab') expands to 'C:MATLABbinmatlab.exe' Note on OS Compatibility: Although these functions are written to be OS independent, they have been only tested under Windows. Please report here if you successfully used these functions under Linux or Mac.
- Publisher: Kesh Ikuma
- Date Released: 13-06-2013
- Download Size: 10 KB
- Download
- Platform: Matlab, Scripts
