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 x = symplex::var("x");
let m = matrix![[x, 1], [0, x]];