Skip to content

Commit

Permalink
Simplified readme
Browse files Browse the repository at this point in the history
  • Loading branch information
caph1993 committed Mar 20, 2024
1 parent e28db34 commit 2fc7ec0
Show file tree
Hide file tree
Showing 157 changed files with 328 additions and 295 deletions.
3 changes: 2 additions & 1 deletion dist/docs-index.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/**
* @module ndarray-js
* @description
* # Welcome to the documentation of ndarray-js
* <style>h1 a code{ font-size: 200%; }</style>
* # Welcome to the documentation of `ndarray-js`
* ndarray-js is a reimplementation of numpy for javascript that aims to make the coding experience as similar to numpy as possible.
* ## API Index
* - Global namespace: {@link np}
Expand Down
2 changes: 1 addition & 1 deletion dist/docs-index.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

12 changes: 9 additions & 3 deletions dist/modules/constructors.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
import NDArray from '../NDArray';
export declare function empty(shape: any, dtype?: import('../NDArray').DType): NDArray;
export declare function zeros(shape: any, dtype?: import('../NDArray').DType): NDArray;
export declare function ones(shape: any, dtype?: import('../NDArray').DType): NDArray;
/**
* Creates a new array with the specified shape and type, without initializing entries.
*/
export declare function empty(shape: number[], dtype?: import('../NDArray').DType): NDArray;
/**
* Creates a new array of zeros with the specified shape and dtype.
*/
export declare function zeros(shape: number[], dtype?: import('../NDArray').DType): NDArray;
export declare function ones(shape: number[], dtype?: import('../NDArray').DType): NDArray;
export declare function arange(arg0: any, arg1?: any): NDArray;
export declare function linspace(start: any, stop: any, num?: number, endpoint?: boolean): NDArray;
export declare function geomspace(start: any, stop: any, num?: number, endpoint?: boolean): NDArray;
Expand Down
2 changes: 1 addition & 1 deletion dist/modules/constructors.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file added docs-src/generate-examples.ts
Empty file.
2 changes: 0 additions & 2 deletions docs-src/index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@


<script src="https://cdn.jsdelivr.net/npm/ndarray-js@1.0.0/dist/index.js"></script>
<script src="https://d3js.org/d3.v7.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@observablehq/plot@0.6/dist/plot.umd.min.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion docs/assets/navigation.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/assets/search.js

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions docs/classes/NDArray.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/classes/_internals_.PExpr.html

Large diffs are not rendered by default.

Loading

0 comments on commit 2fc7ec0

Please sign in to comment.