Skip to content
Prev 294243 / 398503 Next

problem with Gauss Hermite ( x and w )

Are you getting caught on order of operations? Note that unary minus
has lower precedence than exponentiation (as it does in math) so

-2.5^(-2.4)

is

x <- 2.5^(-2.4)
-x

Otherwise, I'm not at all sure what your question is: can you give an
example of what you think you should get (and how to get it) and what
R is giving you instead?

Michael
On Thu, May 10, 2012 at 2:30 PM, casperyc <casperyc at hotmail.co.uk> wrote: