Software Listing of Author : "Paul Koch"
- aot
- License: Shareware
- Price:


% function aot(mode, guiname) % Makes the current figure stay on top of all other figures(allways on top, aot) % and adds a pushtool to the figure toolbar. With the pushtool the aot-mode % can be changed. Also works for guis and those without a toolbar. % for a gui without toolbar use the commandline to change the aot-mode % % USAGE: % aot(mode, guiname) % inputs: % mode [0,1] : normal mode or allways on top % guiname: full or partial name of the GUI *** not needed for figures *** % % EXAMPLES: % %__ FIGURES _____ % figure; plot(sin(1:30));aot; % adds a AlwaysONtop-pushtool % % aot(1); % Fig is AlwaysONtop % aot ; %%[same as] aot(0) % FIG is in NORMAL mode [not AOT ] % % %__ GUIS _____ % wrldtrv; aot(1,'World') ; % GUI is AOT % aot(0,'World') ; % GUI is in NORMAL mode [not AOT ] % % %% another example % h = waitbar(0,'Please...
- Platform: Matlab, Scripts
- axshift
- License: Shareware
- Price:


rationale: a] resize of subplots/axes manully in a wysiwyg fashion b] multiple subplots with different sizes, c] overlapping supplots (transparent or not), graphical overlay d] create a layout with subplot locations for other figures/data usage: 1] plot figure with subplots 2] type 'axshift' 3] an icon appears in the toolbar 4] if this icon is selected (colored) -selected axes/subplots of the figure can be moved 5] via contextmenu (right mouse click in the figure,but not within a subplot) the following functions are available - BG-original: backgroundcolor of each subplot set to orig. color - BG-none: transparent background - position-original: original positions of the subplots - position-last one: previous positions - positions to workspace: parse new positions of all subplots to the workspace. This might be...
- Platform: Matlab, Scripts
- uilineshift
- License: Shareware
- Price:


this function might be useful for quick and dirty visual inspection of multiple traces or timecourses with a timedelay between or arbitrary x/y-axes or illconditioned overlay of traces - works for all outputs of the 'plot-function' (type is 'line'). - Note, plotet dots are also of type line. - The function adds an icon in the menubar of a figure, which than activates the shift-function - if the function is active, a line can be selected and moved within the axis as long as the mousebutton is not released - right mouse button (contextmenu): get the original plot (as long as the icon in the menubar is not deactivated) ===================== HOW TO DO: 1] plot(something);%plot something uilineshift; %adds icon in menubar OR 2] uilineshift; %adds icon in menubar now plot something ===================== EXAMPLE: uilineshift('test');...
- Platform: Matlab, Scripts