Rank: 6260 based on 0 downloads (last 30 days) and 0 file submitted
Personal Profile:

http://tdalon.sauropol.com (private)
http://tdalon.pbworks.com (professional)

Professional Interests:
optimization, OR, modeling, statistics, IA, automatics, engine calibration

 

Watch this Author's files

 

Comments and Ratings by Thierry View all
Updated File Comments Rating
06 Sep 2011 VIDEO TUTORIAL: PUBLISHING MATLAB RESULTS TO HTML, WORD, LATEX, ETC. VIDEO TUTORIAL: PUBLISHING MATLAB RESULTS TO HTML, WORD, LATEX, ETC. (Narration in Spanish) Author: Diego Orlando

Language is not English (maybe Spanish?)

26 Nov 2010 String-list Comparison Compares two string-arrays to find equals. Author: Stijn Helsen

calls strcmpc?

16 Jul 2009 Find and Replace Tool Find & Replace the signal names in Simulink & Stateflow Author: Shanmugam Kannappan

P-code: bouh :-(

24 Jun 2009 Close all figures except those listed Close all figures except those listed by the user. Author: Karl

Good idea!
I prefer to use 0 for gcf or 'last' option.
I've modified the function like this:
function cab(varargin)
% CAB close all but
% This function closes all figures currently open EXCEPT for
% those listed as arguments. 'cab' stands for 'close all but'.
%
% SYNTAX:
% CAB figure_handle1 figure_handle2 ... (command line syntax)
% CAB(figure_handle1, figure_handle2, ...)
% Use 0 for gcf. CAB 0 closes all figures except current one.
% CAB : same as close all
%
if nargin==0,
    close all;
    return
end

% all_figs = findall(0, 'type', 'figure'); % Uncomment this to include ALL windows, including those with hidden handles (e.g. GUIs)
all_figs = findobj(0, 'type', 'figure');

if iscellstr(varargin) % command line syntax
    figs2keep=cellfun(@str2double,varargin);
else
    figs2keep=[varargin{:}];
end
figs2keep(figs2keep==0)=gcf;
delete(setdiff(all_figs, figs2keep)

16 Jun 2009 textLoc Puts string onto the current axes with location similar to legend locations. Author: Ben Barrowes

See also FX textbp for option "best location".

Top Tags Applied by Thierry
model predictive control, system identification, ver
Files Tagged by Thierry
Updated   File Tags Downloads
(last 30 days)
Comments Rating
23 Nov 2010 MIMO MRI Multiple Input Multiple Output Model Predictive Control Relevant Identification Author: David LaurĂ­ system identification, model predictive cont... 16 0
  • 5.0
5.0 | 1 rating

Contact us at files@mathworks.com