Displaying 3 results from an estimated 3 matches for "mulitpli".
Did you mean:
mulitple
2010 Dec 26
4
Parsing a Simple Chemical Formula
Hello R Folks...
I've been looking around the 'net and I see many complex solutions in
various languages to this question, but I have a pretty simple need
(and I'm not much good at regex). I want to use a chemical formula as
a function argument. The formula would be in "Hill order" which is to
list C, then H, then all other elements in alphabetical order. My
2010 May 11
1
Splines under tension
Does anyone know if R has a function for splines under tension. I know there
are numerous packages for spline interpolation within R i just can't find
one that lets you determine the tension factor.
Any help would be much appreciated!
Sam
--
View this message in context: http://r.789695.n4.nabble.com/Splines-under-tension-tp2173887p2173887.html
Sent from the R help mailing list archive at
2006 Jul 17
1
multiplying multidimensional arrays (was: Re: [R] Manipulation involving arrays)
I am moving this to r-devel.
The problem and solution below posted on r-help could have been
a bit slicker if %*% worked with multidimensional arrays multiplying
them so that if the first arg is a multidimensional array it is mulitplied
along the last dimension (and first dimension for the second arg).
Then one could have written:
Tbar <- tarray %*% t(wt) / rep(wti, each = 9)
which is a bit nicer than what had to be done, see below, given that %*% only
works with matrices.
I suggest that %*% be so extended to multidimensio...