Arrays (Extent)

TomBascom

Curmudgeon
Nope.

You have to fake it.

There was a thread on the topic not too log ago. But I forget what it was called.
 

tamhas

ProgressTalk.com Sponsor
Generally, the way to "fake it" is to use a temp-table instead, which can allow you to to N-dimensional arrays of arbitrary size and a lot else. Rather than being a work-around, it is a better approach for anything other than matrix algebra. Among other things, it inherently handles sparse arrays without any extra work.
 
Top