Code covered by the BSD License
-
chompsep(str)
CHOMPSEP Remove file separator at end of string.
-
computenewpopulation(pop, bes...
COMPUTENEWPOPULATION Compute competing population of parameter vectors.
-
concatpath(varargin)
CONCATPATH Concatenate file parts with correct file separator.
-
deletewithsemaphores(fileList...
DELETEWITHSEMAPHORES Delete files using semaphors.
-
demo1
DEMO1 Demo for usage of DIFFERENTIALEVOLUTION.
-
demo2
DEMO2 Demo for usage of DIFFERENTIALEVOLUTION.
-
demo3
DEMO3 Demo for usage of DIFFERENTIALEVOLUTION.
-
differentialevolution(...
DIFFERENTIALEVOLUTION Start Differential Evolution optimization.
-
differentialevolutionslave(sl...
DIFFERENTIALEVOLUTIONSLAVE Start differential evolution slave process.
-
displayerrorstruct(errorStruc...
DISPLAYERRORSTRUCT Display structure returned by function lasterror.
-
displayoptimizationhistory(va...
DISPLAYOPTIMIZATIONHISTORY Display optimization history.
-
existfile(fileName)
EXISTFILE Check for file existence.
-
findfiles(varargin)
FINDFILES Recursively search directory for files.
-
formattime(time, mode)
FORMATTIME Return formatted time string.
-
foxholes(x, noPause)
FOXHOLES Evaluate Shekel's Foxholes function.
-
getdefaultparams
GETDEFAULTPARAMS Get default parameters for differential evolution.
-
gethostname
GETHOSTNAME Get host name.
-
getusername
GETUSERNAME Get user name.
-
mbdatevec(n)
MBDATEVEC Return date vector for time in format as of function MBTIME.
-
mbtime
MBTIME Return serial date number converted to seconds
-
quantile2(x, p, dim)
QUANTILE2 Compute quantiles of a data sample.
-
removefilesemaphore(semaphore...
REMOVEFILESEMAPHORE Remove semaphore after file access.
-
rosenbrocksaddle(scale, param...
ROSENBROCKSADDLE Standard optimization function for demonstration.
-
selectfigure(figureTag, varar...
SELECTFIGURE Select figure by user-defined tag.
-
sendmailblat(subject, body, v...
SENDMAILBLAT Send E-mail using the Windows executable BLAT.EXE.
-
setfilesemaphore(fileList)
SETFILESEMAPHORE Set semaphore for file access.
-
tempdir2
TEMPDIR2 Return temporary directory.
-
textwrap2(stringIn, nOfColumn...
TEXTWRAP2 Wrap text string.
-
datenum2.m
-
translatedatestr.m
-
View all files
from
Differential Evolution
by Markus Buehren
Optimization using the evolutionary algorithm of Differential Evolution.
|
| textwrap2(stringIn, nOfColumns)
|
function stringOut = textwrap2(stringIn, nOfColumns)
%TEXTWRAP2 Wrap text string.
% OUT = TEXTWRAP2(IN, COL) wraps the given text string IN to fit into COL
% columns. The results is a string with line breaks '\n' inserted.
%
% OUT = TEXTWRAP2(IN) uses a default number of 75 columns.
%
% Note: This function uses the Matlab-function TEXTWRAP which returns a
% cell array with each cell containing one line of text.
%
% Example:
% disp(textwrap2(myString, 75));
%
% Markus Buehren
% Last modified 21.04.2008
%
% See also TEXTWRAP.
stringOut = '';
if nargin < 2
nOfColumns = 75;
end
if ischar(stringIn)
stringIn = {stringIn}; % function textwrap requires a cell array as input
end
stringOutCell = textwrap(stringIn, nOfColumns);
for k=1:length(stringOutCell)
stringOut = [stringOut, stringOutCell{k}, sprintf('\n')]; %#ok
end
stringOut(end) = ''; % remove last line break
|
|
Contact us