hotfix: update math.copysign examples, closes #5229

pull/5232/head
Scott Anderson 2023-11-13 11:34:27 -07:00
parent c131654294
commit 13b5ff06dc
1 changed files with 14 additions and 14 deletions

View File

@ -83,24 +83,24 @@ data
#### Input data
| _time | x | y |
| -------------------- | --- | --- |
| 2021-01-01T00:00:00Z | 1.2 | 3.9 |
| 2021-01-01T01:00:00Z | 2.4 | 4.2 |
| 2021-01-01T02:00:00Z | 3.6 | 5.3 |
| 2021-01-01T03:00:00Z | 4.8 | 6.8 |
| 2021-01-01T04:00:00Z | 5.1 | 7.5 |
| _time | x | y |
| -------------------- | --- | ---- |
| 2021-01-01T00:00:00Z | 1.2 | 3.9 |
| 2021-01-01T01:00:00Z | 2.4 | -4.2 |
| 2021-01-01T02:00:00Z | 3.6 | 5.3 |
| 2021-01-01T03:00:00Z | 4.8 | -6.8 |
| 2021-01-01T04:00:00Z | 5.1 | 7.5 |
#### Output data
| _time | _value |
| -------------------- | ------- |
| 2021-01-01T00:00:00Z | 1.2 |
| 2021-01-01T01:00:00Z | 2.4 |
| 2021-01-01T02:00:00Z | 3.6 |
| 2021-01-01T03:00:00Z | 4.8 |
| 2021-01-01T04:00:00Z | 5.1 |
| _time | _value |
| -------------------- | ------ |
| 2021-01-01T00:00:00Z | 1.2 |
| 2021-01-01T01:00:00Z | -2.4 |
| 2021-01-01T02:00:00Z | 3.6 |
| 2021-01-01T03:00:00Z | -4.8 |
| 2021-01-01T04:00:00Z | 5.1 |
{{% /expand %}}
{{< /expand-wrapper >}}