CollectionAlgorithmsCreateJaggedDoubleArray Method  | 
 
            Creates a two-dimensional, jagged double array of the specified dimensions.
            
 
    Namespace: 
   AGI.Foundation.Infrastructure
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic static double[][] CreateJaggedDoubleArray(
	int n,
	int m
)
Public Shared Function CreateJaggedDoubleArray ( 
	n As Integer,
	m As Integer
) As Double()()
public:
static array<array<double>^>^ CreateJaggedDoubleArray(
	int n, 
	int m
)
static member CreateJaggedDoubleArray : 
        n : int * 
        m : int -> float[][] 
Parameters
- n
 - Type: SystemInt32
The dimension of the outer array. - m
 - Type: SystemInt32
The dimension of the inner array. 
Return Value
Type: 
DoubleThe new jagged array.
See Also