Do any JS implementations currently support (or have support on the roadmap for) fast, vectorized op
Posted
by agnoster
on Stack Overflow
See other posts from Stack Overflow
or by agnoster
Published on 2010-06-03T10:33:26Z
Indexed on
2010/06/03
10:34 UTC
Read the original article
Hit count: 476
JavaScript
|vectorization
I'd like to do a bit of matrix/vector arithmetic in JavaScript, and was wondering if any browsers or other JS implementations actually have support for vectorized operations, for instance for quickly summing the entries of two Arrays (or summing, or whatever). Even if that currently doesn't mean it compiles down to vectorized operations, at least some language support would be nice for when it does get implemented - I'd take the existence of functions or syntax to support it as a step in the right direction. (Understandably, "vectorization javascript" searches are pretty much all about graphics and SVG.)
© Stack Overflow or respective owner