You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/dists/arcsine/pdf/README.md
+92Lines changed: 92 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -135,6 +135,98 @@ for ( i = 0; i < 25; i++ ) {
135
135
136
136
</section>
137
137
138
+
<!-- C interface documentation. -->
139
+
140
+
* * *
141
+
142
+
<sectionclass="c">
143
+
144
+
## C APIs
145
+
146
+
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
147
+
148
+
<sectionclass="intro">
149
+
150
+
</section>
151
+
152
+
<!-- /.intro -->
153
+
154
+
<!-- C usage documentation. -->
155
+
156
+
<sectionclass="usage">
157
+
158
+
### Usage
159
+
160
+
```c
161
+
#include"stdlib/stats/base/dists/arcsine/pdf.h"
162
+
```
163
+
164
+
#### stdlib_base_dists_arcsine_pdf( x, a, b )
165
+
166
+
Evaluates the probability density function (PDF) for an arcsine distribution.
167
+
168
+
```c
169
+
double out = stdlib_base_dists_arcsine_pdf( 0.5, 0.0, 4.0 );
170
+
// returns ~0.159
171
+
```
172
+
173
+
The function accepts the following arguments:
174
+
175
+
-**x**: `[in] double` input value.
176
+
-**a**: `[in] double` minimum support.
177
+
-**b**: `[in] double` maximum support.
178
+
179
+
```c
180
+
doublestdlib_base_dists_arcsine_pdf( const double x, const double a, const double b );
181
+
```
182
+
183
+
</section>
184
+
185
+
<!-- /.usage -->
186
+
187
+
<!-- C API usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
0 commit comments