I'm a bit confused with Javascript Typed Arrays.

What I have are several Float32Array s, that have no concat method. I don't know how many are them in advance, btw. I'd like to concatenate them all inside another Float32Array, but:

  • as I said before, there is no concatenation method
  • if I try to write past the array length, the array is not expanded (aka this won't work - please note that event.frameBuffer and buffer are both Float32Array and that I don't know what the final length of my buffer will be):

var length_now = buffer.length;
for (var i = 0; i < event.frameBuffer.length; i += 1) {
      buffer [length_now + i] = event.frameBuffer[i];
}

The only solution I found is to copy the Float32Array in a regular array, that's definitely not what I want. How would you do, stackoverflowers?

link|improve this question

(I don't know why code is not formatted properly) – janesconference Dec 29 '10 at 12:58
Code and bulleted lists don't like each other very much. Adding an horizontal rule --- can help :) – Frédéric Hamidi Dec 29 '10 at 13:04
Thank you Frédéric! – janesconference Dec 29 '10 at 13:09
feedback

1 Answer

up vote 3 down vote accepted

Typed arrays are based on array buffers, which can't be resized dynamically, so writing past the end of the array or using push() is not possible.

One way to do what you want would be to allocate a new Float32Array, large enough to contain both arrays, and perform an optimized copy:

function Float32Concat(first, second)
{
    var firstLength = first.length;
    var result = new Float32Array(firstLength + second.length);

    result.set(first);
    result.set(second, firstLength);

    return result;
}

That would allow you to do:

buffer = Float32Concat(buffer, event.frameBuffer);

EDIT: Documentation about typed array members such as set() can be found in the Typed Array Specification.

link|improve this answer
This is really great. Two questions: continuosly re-create a new typed array won't impact performances? and where did you find documentation about the .set function member? It's not in the page you linked. – janesconference Dec 29 '10 at 14:15
@janesconference, well, it won't necessarily impact performance since set() is probably implemented natively and, as such, blindingly fast with memory blits, but it will impact memory since you can't just extend an existing type array. Depending on array size, if memory becomes scarce, thrashing might occur and performance will degrade tremendously as a result. – Frédéric Hamidi Dec 29 '10 at 14:30
édéric: thank you, these were really precise and valuable answers. – janesconference Dec 29 '10 at 15:33
@janesconference, you're welcome. Happy $NEW_YEAR_REJOICING :) – Frédéric Hamidi Dec 29 '10 at 15:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.