I would like to allocate an array in ILNumerics C# that isn't initialized to any values. I know I am going to write over every entry in the array so it doesn't need to be initialized. This will help with a computationally intensive task.
Do I need to dive into ILMemoryPool in order to do this? It would be nice to have a standard array constructor that provided this capability and I haven't been able to find it.
Thanks, Eric