C
Camelot
Guest
Hello,
I noticed that if I do this assignment:
x = pPar(x)
the interpreter translate it in:
x => enter => (pPar x)
This cause me problem because this format is not correctly treated in
CDF parameter.
Is there a way to maintain the original assignment pPar(x) ?
I also noticed that the interpreter maintains the original assignment
if it recognize an existing function, that is:
x = print(x)
x=> enter => printf(x)
So, it treat pPar as an unknown function
Thank you for possible clarification
Regards,
Camelot
I noticed that if I do this assignment:
x = pPar(x)
the interpreter translate it in:
x => enter => (pPar x)
This cause me problem because this format is not correctly treated in
CDF parameter.
Is there a way to maintain the original assignment pPar(x) ?
I also noticed that the interpreter maintains the original assignment
if it recognize an existing function, that is:
x = print(x)
x=> enter => printf(x)
So, it treat pPar as an unknown function
Thank you for possible clarification
Regards,
Camelot