scirs2-stats 0.4.4

Statistical functions module for SciRS2 (scirs2-stats)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! MLE — Maximum Likelihood Estimation utilities.
//!
//! # Modules
//!
//! - [`mod@derive`] — symbolic MLE estimator factory via `cas::solve_system`.
//! - The `symbolic` sub-module re-exports the gradient-descent MLE from
//!   [`crate::mle_symbolic`] (only when the `symbolic` feature is active).

#[cfg(feature = "symbolic")]
pub mod derive;

#[cfg(feature = "symbolic")]
pub use derive::{derive, DeriveError, Estimator, FitError};