StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
617 B
22 lines
617 B
4 years ago
|
var db = require("../double")
|
||
|
|
||
|
//Get higher order word
|
||
|
console.log(db.hi(1.0).toString(16)) //Prints out: 3ff00000
|
||
|
|
||
|
//Get lower order word
|
||
|
console.log(db.lo(1.0).toString(16)) //Prints out: 0
|
||
|
|
||
|
//Combine two words into a double
|
||
|
console.log(db.pack(0, 0x3ff00000)) //Prints out: 1.0
|
||
|
|
||
|
//More sophisticated example: Print out base 2 representation
|
||
|
var pad = require("pad")
|
||
|
function base2Str(n) {
|
||
|
var f = db.fraction(n)
|
||
|
return (db.sign(n) ? "-" : "") +
|
||
|
"2^" + (db.exponent(n)+1) +
|
||
|
" * 0." + pad(f[1].toString(2), 21, "0") +
|
||
|
pad(f[0].toString(2), 32, "0")
|
||
|
}
|
||
|
|
||
|
console.log(base2Str(1.0))
|