Page 1 of 1

auxiliary strings

Posted: Wed May 12, 2021 12:07 am
by tvonbrasch
Hi,

I would like to create an auxiliary string %theta1 that I can use in other string operations, i.e.,

Code: Select all

%theta1 = "(exp(tau1))" %theta4 = "2*{%theta1}"
how can I make the string %theta4 so that it becomes

Code: Select all

%theta4 = "2*(exp(tau1))"
by using %theta1?

t

Re: auxiliary strings

Posted: Wed May 12, 2021 8:16 am
by EViews Gareth

Code: Select all

%theta4 = "2*" + %theta1 + ")"

Re: auxiliary strings

Posted: Thu May 13, 2021 7:58 am
by tvonbrasch
i am embarrassed ...
:-)