search for: invsqrt

Displaying 2 results from an estimated 2 matches for "invsqrt".

Did you mean: insert
1998 May 29
0
aov design questions
...#0.14: ans$fstatistic <- c((mss/(p-1))/(rss/(n-p)),p-1,n-p) names(ans$fstatistic) <- c("value", "numdf", "dendf") } ans$cov.unscaled <- z$cov.unscaled if (correlation) { invsqrt.diag <- diag(sqrt(1/diag(z$cov.unscaled))) ans$correlation <- invsqrt.diag %*% z$cov.unscaled %*% invsqrt.diag dimnames(ans$correlation) <- dimnames(z$cov.unscaled) } class(ans) <- "summary.aov" ans...
2003 Oct 12
1
Altivec-enabled libvorbis...
...l, some .ogg files seem to spend a lot of time in vorbis_lsp_to_curve()...I assume this .ogg is from an older version of the vorbis spec, and such files tend to eat more CPU (although there are some wins here by inlining the the lookup table functions and using the frsqrte opcode instead of the invsqrt lookup table...memory access is a huge bottleneck on the Mac, so recalculating things is frequently faster than using a lookup table)...these files lean towards the 30% speedup side of the field. Other .oggs (newer version?) seem to skip this function altogether and spend a lot of time in mdct....