Re: [R] package expm: matrix powers within a product of matrices: operation precedence

2013-06-18 Thread Ben Bolker
Rainer K. SACHS berkeley.edu> writes: > > Thanks, that clears everything up completely. It might be worth adding > your comment to the available documentation. This request should probably go the maintainer of the expm package (library("expm"); maintainer("expm")), who may or may not be readi

Re: [R] package expm: matrix powers within a product of matrices: operation precedence

2013-06-17 Thread Rainer K. SACHS
t; > Bill Dunlap > Spotfire, TIBCO Software > wdunlap tibco.com > > >> -Original Message- >> From: r-help-boun...@r-project.org [mailto:r-help-boun...@r-project.org] >> On Behalf >> Of Rainer Sachs >> Sent: Monday, June 17, 2013 1:20 PM >>

Re: [R] package expm: matrix powers within a product of matrices: operation precedence

2013-06-17 Thread William Dunlap
Rainer Sachs > Sent: Monday, June 17, 2013 1:20 PM > To: r-help@r-project.org > Subject: [R] package expm: matrix powers within a product of matrices: > operation > precedence > > > package expm: matrix powers within a product of matrices: operation > precedence > &

[R] package expm: matrix powers within a product of matrices: operation precedence

2013-06-17 Thread Rainer Sachs
package expm: matrix powers within a product of matrices: operation precedence I want to double check that for M and N kxk mtrices and v a k-vector M%^%2%*%N%*%v is not automatically read as (M%^%2)%*%N%*%v or M%*%N%^%2%*%v is not automatically read as M%*%(N%^%2)%*%v or both