1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#import "../lib/unify.typ": qty
#figure(
table(
columns: 3,
table.header([Strategy], [Description], [Example use cases]),
[Clamp], [Output held at boundary], [Logarithm],
[Hold], [Freeze last valid output], [Integrator],
[Fold], [Reflect at boundary], [Chaotic attractor],
[Wrap], [Wrap around range], [Phase accumulator],
[Oscillate], [Bounded, specified oscillation], [Implicit function solver],
[Zero], [Output $qty(0, "V")$], [Divider],
[Passthrough], [Input passes unchanged], [Signal conditioner],
),
caption: [Out-of-domain handling stategies],
) <table-out-of-domain-handling-strategies>
|