I'd like to know how to set the length of multidimensional arrays/create dynamic multidimensional arrays in Pascal. Like SetLength(arr,len)
does for one dimensional arrays. I cannot find the answer.
var
arr: array of array of real;
...
SetLength(arr, 10, 20); // creates a 10 by 20 matrix
A bad, but equivalent, way of doing this is to do
SetLength(arr, 10);
for i := low(arr) to high(arr) do
SetLength(arr[i], 20);
The latter approach allows "non-rectangular" arrays, however.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With