Dawson and Fresnel integrals
beignet.special.dawson_integral_f
dawson_integral_f(input, *, out=None)
Dawson’s integral.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
input
|
Tensor
|
Input tensor. |
required |
out
|
Tensor
|
Output tensor. |
None
|
Returns:
Type | Description |
---|---|
Tensor
|
|
Source code in src/beignet/special/_dawson_integral_f.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
|
beignet.special.faddeeva_w
faddeeva_w(input, *, out=None)
Faddeeva function.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
input
|
Tensor
|
Input tensor. |
required |
out
|
Tensor
|
Output tensor. |
None
|
Returns:
Type | Description |
---|---|
Tensor
|
|
Source code in src/beignet/special/_faddeeva_w.py
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 |
|