matrix!() { /* proc-macro */ }
Build a symbolic matrix using natural math syntax.
use symplex::prelude::*; use symplex::matrix; let ctx = Context::new(); let x = ctx.symbol("x"); let m = matrix![ctx, [x, 1], [0, x]];