Element - Þm
- Zero Matrix
Description
Given a list of dimensions, create a matrix with those dimensions, filled with zeroes
Overloads
lst
-matrix with dimensions each item of a, where the first is the innermost and the last is the outermost
Examples
⟨3|4⟩ Þm
=⟨⟨0|0|0⟩|⟨0|0|0⟩|⟨0|0|0⟩|⟨0|0|0⟩⟩
⟨2|3|2⟩ Þm
=⟨⟨⟨0|0⟩|⟨0|0⟩|⟨0|0⟩⟩|⟨⟨0|0⟩|⟨0|0⟩|⟨0|0⟩⟩⟩
⟨0|0|0⟩ Þm
=⟨⟨⟨⟩⟩⟩