pub fn recurrence_plot(
attractor: AttractorType,
n: usize,
threshold: f32,
) -> Vec<bool>Expand description
Compute a recurrence matrix for a sampled attractor trajectory.
matrix[i][j] = 1 if |state_i - state_j| < threshold.
Returns a flat n × n bit vector.