Displaying 2 results from an estimated 2 matches for "minimmal".
Did you mean:
minimal
2012 Feb 23
1
Sexpr not getting expanded in Sweave
...9;test.Rnw')
Writing to file test.tex
Processing code chunks with options ...
1 : echo keep.source term verbatim (label = 1)
2 : keep.source term verbatim pdf (label = 2)
You can now run (pdf)latex on ‘test.tex’
It works as it should except for \Sexpr
\documentclass{article}
\title{Sweave minimmal}
\author{MK}
\usepackage{Sweave}
\begin{document}
\maketitle
We try Sweave:
\begin{Schunk}
\begin{Sinput}
> data(airquality)
> summary(airquality)
\end{Sinput}
\begin{Soutput}
Ozone Solar.R Wind Temp Month Day
Min. : 1.0 Min. :...
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 =