Displaying 2 results from an estimated 2 matches for "minimmize".
Did you mean:
minimize
2012 Feb 23
1
Sexpr not getting expanded in Sweave
An Sweave file, 'test.Rnw':
\documentclass{article}
\title{Sweave minimal}
\author{MK}
\begin{document}
\maketitle
We try Sweave:
<<1>>=
data(airquality)
summary(airquality)
x <- airquality[1, 1]
@
I try Sexpr: \Sexpr{x}
We plot:
\begin{center}
<<2, fig=TRUE, echo=FALSE >>=
boxplot(Ozone ~ Month, data = airquality)
@
\end{center}
\end{document}
I check the
2018 Nov 06
4
top-down vs. bottom-up list scheduling
Hello List!
I am looking at top-down vs. bottom-up list scheduling for simple(r) in-order
cores. First, for some context, below is a fairly representative pseudo-code
example of the sort of DSP-like codes I am looking at:
uint64_t foo(int *pA, int *pB, unsigned N, unsigned C) {
uint64_t sum = 0;
while (N-- > 0) {
A1 = *pA++;
A2 = *pA++;
B1 = *pB++;
B2 =