Rechnernetze / Kommunikationssysteme
Mathe
Some inline Latex: \(a^2 + b^2 = c^2\)
Display equation:
\[\int e^{-kx} \, dx = -\frac{1}{k} e^{-kx}\] \[\begin{align*} & \phi(x,y) = \phi \left(\sum_{i=1}^n x_ie_i, \sum_{j=1}^n y_je_j \right) = \sum_{i=1}^n \sum_{j=1}^n x_i y_j \phi(e_i, e_j) = \\ & (x_1, \ldots, x_n) \left( \begin{array}{ccc} \phi(e_1, e_1) & \cdots & \phi(e_1, e_n) \\ \vdots & \ddots & \vdots \\ \phi(e_n, e_1) & \cdots & \phi(e_n, e_n) \end{array} \right) \left( \begin{array}{c} y_1 \\ \vdots \\ y_n \end{array} \right) \end{align*}\]Flussdiagramm
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
Git-Graph-Demo
gitGraph:
options
{
"nodeSpacing": 150,
"nodeRadius": 10
}
end
commit
branch newbranch
checkout newbranch
commit
commit
checkout master
commit
commit
merge newbranch
Sequenzdiagramm
sequenceDiagram
participant Alice
participant Bob
Alice->>John: Hello John, how are you?
loop Healthcheck
John->>John: Fight against hypochondria
end
Note right of John: Rational thoughts
prevail! John-->>Alice: Great! John->>Bob: How about you? Bob-->>John: Jolly good!
prevail! John-->>Alice: Great! John->>Bob: How about you? Bob-->>John: Jolly good!
sequenceDiagram
participant AW1
participant FT1
participant SW1
participant Soc as Socket
participant SW2
participant FT2
participant AW2
%% Kommentar
Note over AW2: Start
AW2->>+FT2: file.init
Note over FT2: Wait for Start
%%
%% Start
Note over AW1: Start
AW1->>+FT1: file.req
Note over FT1: Send Start
FT1->>+SW1: data.req
SW1->>Soc: udp.req
Soc->>+SW2: udp.ind
SW2->>FT2: data.ind (Start)
Note over FT2: If !CRC -> Start
Note over FT2: Wait for Data
SW2->>-Soc: udp.req (ACK)
Soc->>SW1: udp.ind (ACK)
SW1->>-FT1: data.conf
%%
%% Data 1
Note over FT1: Send Data 1
FT1->>+SW1: data.req
SW1->>Soc: udp.req
Soc->>+SW2: udp.ind
SW2->>FT2: data.ind (Data 1)
Note over FT2: Write to Stream
SW2->>-Soc: udp.req (ACK)
Soc->>SW1: udp.ind (ACK)
SW1->>-FT1: data.conf
%%
%% Data N
Note over FT1: Send Data N
FT1->>+SW1: data.req
SW1->>Soc: udp.req
Soc->>+SW2: udp.ind
SW2->>FT2: data.ind (Data N)
Note over FT2: Write to Stream
Note over FT2: Ready
%%
FT2->>-AW2: file.ind
SW2->>-Soc: udp.req (ACK if CRC OK)
Soc->>SW1: udp.ind (ACK)
SW1->>-FT1: data.conf
%%
%% Finish
Note over FT1: Ready
FT1->>-AW1: file.conf
%%
%%
Note over FT2: Wait for Start
Github-GEO.JSON-Demo
Letzte Änderung: 02. April 2021 10:39