Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92241562
index.js
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Nov 18, 16:26
Size
1 KB
Mime Type
text/x-java
Expires
Wed, Nov 20, 16:26 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22399849
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
index.js
View Options
// @flow
import { write, read } from "@xtuc/ieee754";
/**
* According to https://webassembly.github.io/spec/binary/values.html#binary-float
* n = 32/8
*/
export const NUMBER_OF_BYTE_F32 = 4;
/**
* According to https://webassembly.github.io/spec/binary/values.html#binary-float
* n = 64/8
*/
export const NUMBER_OF_BYTE_F64 = 8;
export const SINGLE_PRECISION_MANTISSA = 23;
export const DOUBLE_PRECISION_MANTISSA = 52;
export function encodeF32(v: number): Array<number> {
const buffer = [];
write(buffer, v, 0, true, SINGLE_PRECISION_MANTISSA, NUMBER_OF_BYTE_F32);
return buffer;
}
export function encodeF64(v: number): Array<number> {
const buffer = [];
write(buffer, v, 0, true, DOUBLE_PRECISION_MANTISSA, NUMBER_OF_BYTE_F64);
return buffer;
}
export function decodeF32(bytes: Array<Byte>): number {
const buffer = Buffer.from(bytes);
return read(buffer, 0, true, SINGLE_PRECISION_MANTISSA, NUMBER_OF_BYTE_F32);
}
export function decodeF64(bytes: Array<Byte>): number {
const buffer = Buffer.from(bytes);
return read(buffer, 0, true, DOUBLE_PRECISION_MANTISSA, NUMBER_OF_BYTE_F64);
}
Event Timeline
Log In to Comment