-
-
Notifications
You must be signed in to change notification settings - Fork 912
feat: add C ndarray
implementation for stats/base/dmeanvarpn
#4720
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
d5fe50e
b6ab880
a0e7465
33e74d7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -43,7 +43,7 @@ var addon = require( './../src/addon.node' ); | |||||
* var out = new Float64Array( 2 ); | ||||||
* | ||||||
* var v = dmeanvarpn( x.length, 1, x, 1, out, 1 ); | ||||||
* // returns <Float64Array>[ ~0.3333, ~4.3333 ] | ||||||
* //returns <Float64Array>[ ~0.3333, ~4.3333 ] | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
*/ | ||||||
function dmeanvarpn( N, correction, x, strideX, out, strideOut ) { | ||||||
addon( N, correction, x, strideX, out, strideOut ); | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this is an incorrect format for There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
Uh oh!
There was an error while loading. Please reload this page.