Closed
Description
Should we use a fixed array type or give the user the ability to choose (see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Typed_arrays)?
I'm thinking the best would be to use Float64Array
, which is the equivalent of a C double
.
Like this:
javascript
var buffer = new ArrayBuffer(length * 8);
var values = new Float64Array(buffer);
Activity