Rank: 4107 based on 0 downloads (last 30 days) and 0 file submitted
photo

Thierry Dalon

E-mail
Lat/Long
49.01467, 12.10166

Personal Profile:

http://tdalon.sauropol.com (private)
http://tdalon.net (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
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".

02 Jun 2009 Traveling Salesman Problem - Genetic Algorithm Finds a near-optimal solution to a TSP using a GA Author: Joseph Kirk

How about making a TSP Toolbox with all your TSP contributions? (around 15)!

02 Jun 2009 optimize optimize (non)linear (in)equality constrained functions with FMINSEARCH Author: Rody Oldenhuis

Hi!
looks GREAT!
could you add to the package the source for the testoptimize.m, please ?
 maybe add it as well as a demo alike TMW optimdemos.

Top Tags Applied by Thierry
ver
 

MATLAB Central Terms of Use

NOTICE: Any content you submit to MATLAB Central, including personal information, is not subject to the protections which may be afforded information collected under other sections of The MathWorks, Inc. Web site. You are entirely responsible for all content that you upload, post, e-mail, transmit or otherwise make available via MATLAB Central. The MathWorks does not control the content posted by visitors to MATLAB Central and, does not guarantee the accuracy, integrity, or quality of such content. Under no circumstances will The MathWorks be liable in any way for any content not authored by The MathWorks, or any loss or damage of any kind incurred as a result of the use of any content posted, e-mailed, transmitted or otherwise made available via MATLAB Central. Read the complete Terms prior to use.

Contact us at files@mathworks.com