Skip to content

feat: add C ndarray and refactor for stats/base/dmeanpn #4726

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

Closed
Closed
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: fixing mistakes
Co-authored-by: Neeraj Pathak <[email protected]>
Signed-off-by: Dhruv/ <[email protected]>
  • Loading branch information
DhruvArvindSingh and Neerajpathak07 authored Jan 15, 2025
commit 3899530ff2fd9930e7215758e9f3dbd2b07f2dcc
3 changes: 3 additions & 0 deletions lib/node_modules/@stdlib/stats/base/dmeanpn/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,9 @@ int main( void ) {
// Create a strided array:
const double x[] = { 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 };

// Specify the number of elements:
const int N = 4;

// Compute the arithmetic mean:
double v = stdlib_strided_dmeanpn( 4, x, 2 );

Expand Down
Loading