#lang racket (require math) (matrix* (matrix [[1 2] [3 4]]) (matrix [[5 6] [7 8]])) ;; -> (array #[#[19 22] #[43 50]])