edfcore 0.4.312 → 0.4.314
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/docs/CHANGELOG.md +23 -0
- package/package.json +1 -1
- package/src/constants.ts +1 -1
package/dist/constants.d.ts
CHANGED
|
@@ -109,5 +109,5 @@ export declare const SIGNAL_FIELD_BLOCK_OFFSETS: {
|
|
|
109
109
|
readonly reserved: 224;
|
|
110
110
|
};
|
|
111
111
|
/** Published package version. Kept in sync with package.json by a test. */
|
|
112
|
-
export declare const VERSION = "0.4.
|
|
112
|
+
export declare const VERSION = "0.4.314";
|
|
113
113
|
//# sourceMappingURL=constants.d.ts.map
|
package/dist/constants.js
CHANGED
package/docs/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,29 @@ alone does not tell you whether you were affected.
|
|
|
6
6
|
edfcore is pre-1.0. Patch releases have carried behaviour changes where the old behaviour was a
|
|
7
7
|
defect; those are called out below.
|
|
8
8
|
|
|
9
|
+
## 0.4.314
|
|
10
|
+
|
|
11
|
+
- **Added** the census underneath the table 0.4.313 pinned: the two conversion forms are run over
|
|
12
|
+
every one of the 65,536 encodings and the four numbers the page states are computed from the
|
|
13
|
+
result — 37,144 differing values, 57 % of them, a largest gap of 8.5e-14 and 5.6e-12 of a
|
|
14
|
+
quantisation step. The quoted figures are parsed from the page and compared at the two
|
|
15
|
+
significant figures they are written to.
|
|
16
|
+
- The sentence after them, that the gap is eleven orders of magnitude below anything an amplifier
|
|
17
|
+
can express, is derived rather than trusted. It is the reason the difference is safe to have,
|
|
18
|
+
and it is the number most likely to be left behind by a change to either form.
|
|
19
|
+
|
|
20
|
+
## 0.4.313
|
|
21
|
+
|
|
22
|
+
- **Added** an execution of the conversion table on `physical-values.md`: four rows of exact
|
|
23
|
+
float64 literals showing where EDFlib's expression and the textbook one part company. The
|
|
24
|
+
literals are parsed from the page, edfcore's column is produced by `toPhysical` and the other by
|
|
25
|
+
the rejected form, and both are compared with `Object.is` — the comparison the golden-value
|
|
26
|
+
harness uses, and the only one that can see the digit the table exists to show.
|
|
27
|
+
- The table is the argument for the package's one deliberate numerical choice, so its numbers
|
|
28
|
+
being right mattered more than most. They were, and nothing held them there. The scale the page
|
|
29
|
+
prints beside it and the claim that the two forms agree only at the endpoints are checked from
|
|
30
|
+
the same rows.
|
|
31
|
+
|
|
9
32
|
## 0.4.312
|
|
10
33
|
|
|
11
34
|
- **Added** a cross-check of the sample decoders printed on `edf-format.md` against edfcore's own.
|
package/package.json
CHANGED
package/src/constants.ts
CHANGED