Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: English - Français - Português - Русский -
Scilabヘルプ >> Genetic Algorithms > Utilities > coding_ga_identity

coding_ga_identity

A "no-operation" conversion function

Syntax

pop_out = coding_ga_identity(pop_in,direction,param)

Arguments

pop_in

the population to be converted.

direction

"code" or "decode". This value has no influence of the state of pop_in.

param

a parameter list. For this function, there are no useful parameters set.

pop_out

a population identical to pop_in.

Description

This function is a do-nothing function. It is essentially useful to implement an evolutionnary algorithm. In an evolutionnary algorithm, we work directly on the variable and not on a binary code.

Examples

pop_in = list();
pop_in(1) = 2;

pop_out = coding_ga_identity(pop_in,'code',[])

pop_in_2 = coding_ga_identity(pop_out,'decode',[])

See Also

Scilab Enterprises
Copyright (c) 2011-2015 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jun 15 08:35:28 CEST 2016