Mercerenies / fifi-calculator

1 stars 0 forks source link

Matrices #49

Open Mercerenies opened 2 weeks ago

Mercerenies commented 2 weeks ago

Matrix arithmetic and vector-matrix computations.

Mercerenies commented 2 weeks ago

Open question: How do we represent these? Emacs just uses nested vectors (vectors of vectors), which is an option. Another thought I had was

matrix(1, 2, 3, |, 4, 5, 6)

where | is a special symbol created just for this purpose. But that's probably more annoyingly complicated than just vector(vector(...)).