int arr = new double[][] {
new double[] {1, 2, 3, 4, 66},
new double[] {5, 6, 7, 8, 66},
new double[] {9, 10, 11, 12, 66},
new double[] {13, 14, 15, 16, 66},
new double[] {13, 14, 15, 16, 99}
}
When trying to create the matrix this way I get the following error:
Argument 1: cannot convert from 'double[][]' to 'int[][]' [c##]