I am writing some matrix routines in Delphi and this problem came up. I have defined a real matrix thus:-
RealArrayNPbyNP = Array[1..200,1..200] of Extended;
I have populated this array with a 5 x 6 matrix.
How do I query the array to get the number of rows (which in this case will be 5) and the number of cols (which in this case will be 6) in delphi code.