Write IP Bericht
BIN
graphics/background/bach/instability/frame_1.png
Normal file
|
After Width: | Height: | Size: 5.9 KiB |
BIN
graphics/background/bach/instability/frame_18.png
Normal file
|
After Width: | Height: | Size: 5.9 KiB |
BIN
graphics/background/bach/instability/frame_25.png
Normal file
|
After Width: | Height: | Size: 6 KiB |
BIN
graphics/background/bach/instability/frame_7.png
Normal file
|
After Width: | Height: | Size: 6 KiB |
34
graphics/background/sign-based-overlay.typ
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
#import "@preview/cetz:0.3.4": canvas
|
||||
#import "@preview/cetz-plot:0.1.1": plot, chart
|
||||
|
||||
#let ymax = 1/calc.sqrt(2*calc.pi)
|
||||
|
||||
#let line_style = (stroke: (paint: black, thickness: 2pt))
|
||||
#let dashed = (stroke: (dash: "dashed"))
|
||||
#canvas({
|
||||
|
||||
plot.plot(size: (6,3),
|
||||
legend: "north",
|
||||
legend-style: (orientation: ltr, item: (spacing: 0.5)),
|
||||
x-tick-step: none,
|
||||
x-ticks: ((0, [0]), (100, [0])),
|
||||
y-label: $cal(Q)(1, x)$,
|
||||
x-label: $x$,
|
||||
y-tick-step: none,
|
||||
y-ticks: ((0, [0]), (ymax, [1])),
|
||||
axis-style: "left",
|
||||
x-min: -3,
|
||||
x-max: 3,
|
||||
y-min: 0,
|
||||
y-max: ymax,{
|
||||
plot.add(
|
||||
plot.sample-fn(
|
||||
(x) => 1/calc.sqrt(2*calc.pi)*calc.exp(-(calc.pow(x,2)/2)),
|
||||
(-3, 3),
|
||||
300),
|
||||
style: (stroke: (paint: red, thickness: 2pt)),
|
||||
label: [PDF einer Normalverteilung]
|
||||
)
|
||||
plot.add(((-3,0), (0,0), (0,ymax), (3,ymax)), style: line_style, label: [$cal(Q)(1,x)$])
|
||||
})
|
||||
})
|
||||
26
graphics/background/two-bit-enroll.typ
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
#import "@preview/cetz:0.3.4": canvas, draw, palette
|
||||
#import "@preview/cetz-plot:0.1.1": plot, chart
|
||||
|
||||
#let line_style = (stroke: (paint: black, thickness: 2pt))
|
||||
#let dashed = (stroke: (dash: "dashed"))
|
||||
#canvas({
|
||||
import draw: *
|
||||
set-style(axes: (shared-zero: false))
|
||||
plot.plot(size: (8,6),
|
||||
x-tick-step: none,
|
||||
x-ticks: ((0.25, [$g_1$]), (0.5, [0]), (0.75, [$g_2$])),
|
||||
y-label: $cal(Q)(2, 1, tilde(x))$,
|
||||
x-label: $tilde(x)$,
|
||||
y-tick-step: none,
|
||||
y-ticks: ((0.25, [00]), (0.5, [01]), (0.75, [10]), (1, [11])),
|
||||
axis-style: "left",
|
||||
//x-min: 0,
|
||||
x-max: 1,
|
||||
y-min: 0,
|
||||
y-max: 1,{
|
||||
plot.add(((0,0.25), (0.25,0.25), (0.5,0.5), (0.75,0.75), (1, 1)), line: "vh", style: line_style)
|
||||
//plot.add(((0,0), (0,0)), style: (stroke: none))
|
||||
plot.add-hline(0.25, 0.5, 0.75, 1, style: dashed)
|
||||
plot.add-vline(0.25, 0.5, 0.75, 1, style: dashed)
|
||||
})
|
||||
})
|
||||
1000
graphics/background/z_distribution.csv
Normal file
27
graphics/background/z_distribution.typ
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
#import "@preview/cetz:0.3.4": canvas
|
||||
#import "@preview/cetz-plot:0.1.1": plot, chart
|
||||
|
||||
#let data = csv("z_distribution.csv")
|
||||
#let data = data.map(value => value.map(v => float(v)))
|
||||
|
||||
#let line_style = (stroke: (paint: black, thickness: 2pt))
|
||||
#let dashed = (stroke: (dash: "dashed"))
|
||||
#canvas({
|
||||
plot.plot(size: (6,3),
|
||||
legend : "south",
|
||||
legend-style: (orientation: ltr, item: (spacing: 0.5)),
|
||||
x-tick-step: none,
|
||||
x-ticks: ((0, [0]), (100, [0])),
|
||||
y-label: $cal(Q)(1, z), abs(f_"Z" (z))$,
|
||||
x-label: $z$,
|
||||
y-tick-step: none,
|
||||
y-ticks: ((0, [0]), (0.6, [1])),
|
||||
axis-style: "left",
|
||||
x-min: -5,
|
||||
x-max: 5,
|
||||
y-min: 0,
|
||||
y-max: 0.6,{
|
||||
plot.add((data), style: (stroke: (paint: red, thickness: 2pt)), label: [Optimierte PDF])
|
||||
plot.add(((-5, 0), (0, 0), (0, 0.6), (5, 0.6)), style: line_style, label: [Quantisierer])
|
||||
})
|
||||
})
|
||||
BIN
graphics/execution/brute-force-occurs.png
Normal file
|
After Width: | Height: | Size: 124 KiB |
BIN
graphics/execution/brute-force.png
Normal file
|
After Width: | Height: | Size: 70 KiB |
BIN
graphics/execution/given_codeword.png
Normal file
|
After Width: | Height: | Size: 84 KiB |
BIN
graphics/execution/helperdata_occurs.png
Normal file
|
After Width: | Height: | Size: 174 KiB |
BIN
graphics/execution/recursive_distribution .png
Normal file
|
After Width: | Height: | Size: 26 KiB |