29
29
30
30
Notes
31
31
-----
32
- This module is a face or public interface file for the library
32
+ This module exposes the public interface for ``dpnp.scipy.special``.
33
33
it contains:
34
34
- Interface functions
35
35
- documentation for the functions
@@ -92,11 +92,11 @@ def __call__(self, x, out=None): # pylint: disable=signature-differs
92
92
93
93
See Also
94
94
--------
95
- :obj:`dpnp.special.erfc` : Complementary error function.
96
- :obj:`dpnp.special.erfinv` : Inverse of the error function.
97
- :obj:`dpnp.special.erfcinv` : Inverse of the complementary error function.
98
- :obj:`dpnp.special.erfcx` : Scaled complementary error function.
99
- :obj:`dpnp.special.erfi` : Imaginary error function.
95
+ :obj:`dpnp.scipy. special.erfc` : Complementary error function.
96
+ :obj:`dpnp.scipy. special.erfinv` : Inverse of the error function.
97
+ :obj:`dpnp.scipy. special.erfcinv` : Inverse of the complementary error function.
98
+ :obj:`dpnp.scipy. special.erfcx` : Scaled complementary error function.
99
+ :obj:`dpnp.scipy. special.erfi` : Imaginary error function.
100
100
101
101
Notes
102
102
-----
@@ -113,7 +113,7 @@ def __call__(self, x, out=None): # pylint: disable=signature-differs
113
113
--------
114
114
>>> import dpnp as np
115
115
>>> x = np.linspace(-3, 3, num=5)
116
- >>> np.special.erf(x)
116
+ >>> np.scipy. special.erf(x)
117
117
array([[-0.99997791, -0.96610515, 0. , 0.96610515, 0.99997791])
118
118
119
119
"""
@@ -148,17 +148,17 @@ def __call__(self, x, out=None): # pylint: disable=signature-differs
148
148
149
149
See Also
150
150
--------
151
- :obj:`dpnp.special.erf` : Gauss error function.
152
- :obj:`dpnp.special.erfinv` : Inverse of the error function.
153
- :obj:`dpnp.special.erfcinv` : Inverse of the complementary error function.
154
- :obj:`dpnp.special.erfcx` : Scaled complementary error function.
155
- :obj:`dpnp.special.erfi` : Imaginary error function.
151
+ :obj:`dpnp.scipy. special.erf` : Gauss error function.
152
+ :obj:`dpnp.scipy. special.erfinv` : Inverse of the error function.
153
+ :obj:`dpnp.scipy. special.erfcinv` : Inverse of the complementary error function.
154
+ :obj:`dpnp.scipy. special.erfcx` : Scaled complementary error function.
155
+ :obj:`dpnp.scipy. special.erfi` : Imaginary error function.
156
156
157
157
Examples
158
158
--------
159
159
>>> import dpnp as np
160
160
>>> x = np.linspace(-3, 3, num=5)
161
- >>> np.special.erfc(x)
161
+ >>> np.scipy. special.erfc(x)
162
162
array([[-0.99997791, -0.96610515, 0. , 0.96610515, 0.99997791])
163
163
164
164
"""
0 commit comments