pub fn mimo_output(
c: &[f64],
d: &[f64],
x: &[f64],
u: &[f64],
p: usize,
out: &mut [f64],
) -> boolExpand description
MIMO output equation y = C·x + D·u with p outputs: c is p×n (row-major), d is p×m
(row-major); the output is written to out (len p). Zero-heap. Returns false on a mismatch.