Skip to content

Commit f5b6a4d

Browse files
committed
chore: add structured package data for math/base/special/logitf
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: passed - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent cad6845 commit f5b6a4d

File tree

1 file changed

+77
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/logitf

1 file changed

+77
-1
lines changed

lib/node_modules/@stdlib/math/base/special/logitf/package.json

Lines changed: 77 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,81 @@
6363
"logistic",
6464
"sigmoid",
6565
"special"
66-
]
66+
],
67+
"__stdlib__": {
68+
"scaffold": {
69+
"$schema": "math/[email protected]",
70+
"base_alias": "logit",
71+
"alias": "logitf",
72+
"pkg_desc": "evaluate the logit function for a single-precision floating-point number",
73+
"desc": "evaluates the logit function for a single-precision floating-point number",
74+
"short_desc": "logit",
75+
"parameters": [
76+
{
77+
"name": "x",
78+
"desc": "input value",
79+
"type": {
80+
"javascript": "number",
81+
"jsdoc": "number",
82+
"c": "float",
83+
"dtype": "float32"
84+
},
85+
"domain": [
86+
{
87+
"min": 0,
88+
"max": 1
89+
}
90+
],
91+
"rand": {
92+
"prng": "random/base/uniform",
93+
"parameters": [
94+
0,
95+
1
96+
]
97+
},
98+
"example_values": [
99+
0.001,
100+
0.005,
101+
0.01,
102+
0.025,
103+
0.05,
104+
0.1,
105+
0.2,
106+
0.3,
107+
0.4,
108+
0.45,
109+
0.5,
110+
0.55,
111+
0.6,
112+
0.7,
113+
0.8,
114+
0.9,
115+
0.95,
116+
0.975,
117+
0.99,
118+
0.999
119+
]
120+
}
121+
],
122+
"output_policy": "real_floating_point_and_generic",
123+
"returns": {
124+
"desc": "logit",
125+
"type": {
126+
"javascript": "number",
127+
"jsdoc": "number",
128+
"c": "float",
129+
"dtype": "float32"
130+
}
131+
},
132+
"keywords": [
133+
"logit",
134+
"logitf",
135+
"proportion",
136+
"log-odds",
137+
"logistic",
138+
"sigmoid"
139+
],
140+
"extra_keywords": []
141+
}
142+
}
67143
}

0 commit comments

Comments
 (0)