-
Notifications
You must be signed in to change notification settings - Fork 44
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
Restructure class methods into individual files #161
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Code Climate has analyzed commit 3d71147 and detected 23 issues on this pull request. Here's the issue category breakdown:
The test coverage on the diff in this pull request is 92.7% (80% is the threshold). This pull request will bring the total coverage in the repository to 92.7% (9.6% change). View more on Code Climate. |
mateogianolio
added a commit
that referenced
this pull request
Aug 7, 2019
* NDArray restructured, tests passing * finishing touches on NDArray * prepare Vector and Matrix, fix tslint * restructure methods of Vector * disable duplication checks * ... * improve types, replace *.call(this, ...) with this.*(...) * passing tests and lint * upd dependencies, fix vulns, upd benchmarks, upd docs * fix docs * improve docs * upd travis buildspec * upgrade matplotnode to 0.4.1 * upgrade matplotnode to 0.4.2 * add libpython-dev to travis buildspec * upd g++ to 4.9 * rm clang * nyc config updates * fix issues with inheritance, split up tests into separate files, rearrange stuff * upgrade deps * fix #39 * improvements * minor cleanup * cleanup jacobi method * add lapack optimisations, rename some methods * dist + docs * ... * benchmarks * add dtype * improvements * switch version from 6.0.0 to 6.0.0-beta.0
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Features
NDArray
Vector
Matrix
NDArray
reshape
,slice
,equidimensional
,equilateral
methods.Matrix
eig
method that returns eigenvalues and eigenvectors.eig
,inv
,lu
,lu_factor
,solve
.Breaking changes
NDArray
dtype: DType
instead oftype: TypedArrayConstructor
.min
andmax
arguments fromrandom
method.Matrix
plu
tolu_factor
.determinant
todet
.inverse
toinv
.identity
toeye
and move it toNDArray
.Vector
magnitude
tonorm
and move it toNDArray
.