Element - Þe
- Matrix Exponentiation
Description
A matrix multiplied by itself n times
Overloads
lst-num
-a ** b (matrix exponentiation)
num-lst
-b ** a (matrix exponentiation)
Examples
⟨⟨0|0|1|0⟩|⟨1|0|1|0⟩|⟨0|1|0|1⟩|⟨0|0|1|0⟩⟩ 2 Þe
=⟨⟨0|1|0|1⟩|⟨0|1|1|1⟩|⟨1|0|2|0⟩|⟨0|1|0|1⟩⟩
⟨1|2|3|4|5⟩ 4 Þe
=⟨⟨3375⟩|⟨6750⟩|⟨10125⟩|⟨13500⟩|⟨16875⟩⟩
⟨⟨⟩⟩ 2 Þe
=⟨⟨⟩⟩