From fbcdd7a30263428ebf834c9e48122fa17aef9748 Mon Sep 17 00:00:00 2001 From: eneller Date: Mon, 23 Mar 2026 21:22:50 +0100 Subject: [PATCH] cdma report formatting --- cdma.Rmd | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/cdma.Rmd b/cdma.Rmd index 59e36da..2a30325 100644 --- a/cdma.Rmd +++ b/cdma.Rmd @@ -49,6 +49,9 @@ print(lines) print(lines_bin) ``` +```{r, results='asis', echo=FALSE} +cat("\\newpage") +``` ## Orthogonal Code For an orthogonal code, we are looking for vectors $(a,b,...n)$ that satisfy pairwise orthogonality $a \perp b$. ```{r orth} @@ -103,6 +106,10 @@ We can now do a simple check if all the values we decoded are the same: decoded_m == lines_bin ``` + +```{r, results='asis', echo=FALSE} +cat("\\newpage") +``` Then we apply our text encoding on each line separately, respecting the LSB/MSB order. ```{r text-decode} chunk <- function(x, chunk_size) {