How To Assign Operator/Variables with a value

16 Ansichten (letzte 30 Tage)
Yanuar Rizki Pahlevi
Yanuar Rizki Pahlevi am 6 Okt. 2020
Beantwortet: Walter Roberson am 7 Okt. 2020
Hi, I am currently working on a task of Linear Genetic Programming,
I have a question, how is the way to create the variable register and operator register in matlab?
I need to create that
1= +, 2= -, 3= *,4=/ and other operator
and variable register
1=x1, and so on.
I use ' ' and put them in matrix, but I cannot use them to calculation while I am evaluating the chromosome.
lets say I have A=[1 2 3 4], this means
X=2*4
(1 is X, and 3=*)
can anyone help me?

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 7 Okt. 2020
functions = {@plus, @minus, @times, @rdivide};
Now you can take the character representing the operator, subtract '0' (the character for the digit 0), and use that to index functions to get the function handle of the operator to execute.
If you need different variables, then create a vector of zeros, and take the character representing the variable number, subtract '0' and use that to index the variables vector.

Weitere Antworten (1)

Peter O
Peter O am 6 Okt. 2020
I'm not familiar with LGP.
Consider a cell array to hold the chromosome?
C = {X, 2, @times, 4}
Using the operator definitions with function handles permits you to assign multiple and unknown operators. Alternatively, you can code them like you had 1=+, 2=-, etc and use an if/else on eval of the chromosome.
If permitted, I'd also suggest considering RPN notation to handle the arguments. A little cleaner/easier ordering.
C = {X, @times, 2, 4} --> Assign X @times(2,4)
Handles for 4 Fcn Basics: @plus, @minus, @times, @mrdivide
  1 Kommentar
Yanuar Rizki Pahlevi
Yanuar Rizki Pahlevi am 7 Okt. 2020
I tried put 1=+, 2=-, and so on. but it did not work
is it possible to use 1=@plus?

Melden Sie sich an, um zu kommentieren.

Tags

Produkte

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by