Ada - Column Matrix from 2D array type

Solution 1:

The solution,

    U : Matrix(1..2, 1..1) := (
        (1 => 1),
        (1 => 1)
    );