public void GetCol_ReturnsMatVectorWithArrHeightLength()
 {
     using (var col = arr.GetCol(0))
     {
         Assert.AreEqual(1, col.Cols);
         Assert.AreEqual(arr.Size.Height, col.Rows);
     }
 }