ByteCodeMutationUsingDoubles {mcga} | R Documentation |
Mutation operator for byte representation of double values
Description
This function is a C++ wrapper for mutating byte representation of a given candidate solution
Usage
ByteCodeMutationUsingDoubles(d, pmutation)
Arguments
d |
A vector of doubles |
pmutation |
Probability of mutation |
Value
Double vector of mutated solution
Author(s)
Mehmet Hakan Satman - mhsatman@istanbul.edu.tr
See Also
ByteCodeMutation
Examples
set.seed(1246)
print(pi)
print(exp(1))
new.var <- ByteCodeMutationUsingDoubles(c(pi, exp(1)), 0.10)
print(new.var)
[Package mcga version 3.0.7 Index]