1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
use crateAd;
use SVector;
/// Creates an active scalar Ad value with single input dimension
///
/// # Arguments
/// * `value` - The scalar value to wrap in an Ad type
///
/// # Returns
/// An Ad<1> instance representing an active scalar value with single input dimension
/// Creates a vector of active Ad values with specified input and vector dimensions
///
/// # Arguments
/// * `values` - Slice of f64 values to convert to active Ad values
///
/// # Type Parameters
/// * `L` - Both the input dimension (for gradients) and vector length
///
/// # Returns
/// An SVector of `Ad<L>` values where each element is active
/// Creates a vector of active Ad values with specified input and vector dimensions
///
/// # Arguments
/// * `values` - Slice of f64 values to convert to active Ad values
///
/// # Type Parameters
/// * `L` - Both the input dimension (for gradients) and vector length
///
/// # Returns
/// An SVector of `Ad<L>` values where each element is active