Code: Select all
precedence order as follows (from highest precedence to lowest):
[*]unary minus (-), unary plus (+)
[*]exponentiation(^)
[*]multiplication (*), division (/)
[*]addition (+), subtraction (-)Code: Select all
[*]exponentiation(^)
[*]unary minus (-), unary plus (+)
[*]multiplication (*), division (/)
[*]addition (+), subtraction (-)Code: Select all
http://www.eviews.com/download/ev6download.html
July, 2007
Changed the precedence of unary negative sign and raised to the power (^) in scalar operations to match that of series operations so that for example -3^2 = -9 instead of 9.
Code: Select all
wfcreate u 8
genr a = -3^2
genr b = -a^2
genr x = (-3)^2
group ga a b x
show ga
