Hi @bhctuary, update: The ability to have repeated unknown terms in custom search has been added in v2.23, released today. As per the documentation, to use an unknown term multiple times in your equation, write it as an indexed term by adding a number after f
. For example:
y = f1() + f1()*x
Both instances of f1()
will be identical, creating a line with the same intercept and slope. Similarly, in:
y = f1(x) / (1 + f1(x))
Both occurrences of f1(x)
will represent the same function. So, in your case, you would write:
y = f1() * f(X1,X2,X3) + (1-f1()) * f(X1,X2,X3)
Here, the two f1()
constants will be identical, but not the two f(X1,X2,X3)
.