Skip to content

DiamondMatrix

Creates a diamond-shaped matrix of ones.

$ wo 'DiamondMatrix[2]'
{{0, 0, 1, 0, 0}, {0, 1, 1, 1, 0}, {1, 1, 1, 1, 1}, {0, 1, 1, 1, 0}, {0, 0, 1, 0, 0}}