
global alloc and numeric arrays
I'm presently using code in a DLL with an upper limit on the array size.
This allows simple assignments and runs very fast. eg.
int ndx[N_MAX]
..
ndx(i)=something
..
Looking at global_alloc and the uSoft documentation, it seems there is no
way to replace this code without using manual indexing.
Am I missing something? Does anyone have a recommendation as to the
fasted method for a replacement?
Thanks,
Gary