Documentation of mutrandreal

Global Index (all files) (short | long) | Local contents | Local Index (files in subdir) (short | long)

Function Synopsis

NewChrom = mutrandreal(Chrom, VLUB, MutRate)

Help text

 MUTation RANDom of real variables

 This function takes the current population and produces the
 same number of randomly initialized real valued individuals.
 This is done by calling a low level function (mutrand)
 which calls the initialization function appropriate for 
 the variable representation.
 The resulting (random) individuals are returned.

 Syntax:  NewChrom = mutrandreal(Chrom, VLUB, MutRate)

 Input parameters:
    Chrom     - A matrix containing the chromosomes of the
                current population. Each row corresponds to
                an individuals.
    VLUB      - Matrix containing the boundaries of each variable.
    MutRate   - Not used here!

 Output parameter:
    NewChrom  - Matrix containing the new (random) individuals.

 See also: mutate, mutrand, initrp

Cross-Reference Information

This function calls This function is called by

Listing of function mutrandreal



% Author:   Hartmut Pohlheim
% History:  14.06.99    file created


function NewChrom = mutrandreal(Chrom, VLUB, MutRate)

% Check input parameters
   if nargin < 3, MutRate = NaN; end

% call low level function with appropriate parameters
   VarFormat = 0;
   NewChrom = mutrand(Chrom, VLUB, MutRate, VarFormat);


% End of function
GEATbx: Main page  Tutorial  Algorithms  M-functions  Parameter/Options  Example functions  www.geatbx.com 

This document is part of version 3.7 of the GEATbx: Genetic and Evolutionary Algorithm Toolbox for use with Matlab - www.geatbx.com.
The Genetic and Evolutionary Algorithm Toolbox is not public domain.
© 1994-2005 Hartmut Pohlheim, All Rights Reserved, (support@geatbx.com).