Skip to main content

matrix

Macro matrix 

Source
matrix!() { /* proc-macro */ }
Expand description

Build a symbolic matrix using natural math syntax.

§Examples

use symplex::prelude::*;
use symplex::matrix;

let ctx = Context::new();
let x = ctx.symbol("x");
let m = matrix![ctx, [x, 1], [0, x]];