Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
2023.0.0 - Русский


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

Report an issue
<< coding_ga_binary Utilities crossover_ga_binary >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Tue Mar 07 09:28:47 CET 2023