Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
fwilliams authored Sep 9, 2023
1 parent 678fb6f commit 0336859
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# NumpyEigen - Fast zero-overhead bindings between NumPy and Eigen [![Build Status](https://travis-ci.com/fwilliams/numpyeigen.svg?branch=master)](https://travis-ci.com/fwilliams/numpyeigen) [![Build status](https://ci.appveyor.com/api/projects/status/hsavlpy5gm767rj5?svg=true)](https://ci.appveyor.com/project/fwilliams/numpyeigen)
# NumpyEigen - Fast zero-overhead bindings between NumPy and Eigen

**NumpyEigen** makes it easy to transparently convert [NumPy](http://www.numpy.org/)
dense arrays and [SciPy](https://docs.scipy.org/doc/scipy/reference/sparse.html) sparse
Expand Down Expand Up @@ -53,7 +53,7 @@ npe_function(foo)
// wiith zero copy overhead.
npe_arg(a, dense_double, dense_float) // a is a numpy array with dtype either float or double
npe_arg(b, matches(a)) // b is a numpy array whose type has to match a
npe_arg(c, dense_int, dense_long) // c is a numpy array whose type is either int or long
npe_arg(c, dense_int32, dense_int64) // c is a numpy array whose type is either int or long
npe_arg(d, std::string) // d is a string
npe_arg(f, sparse_float, sparse_double) // f is a sparse matrix whose data is either float or double
npe_arg(e, int) // e is an int
Expand Down

0 comments on commit 0336859

Please sign in to comment.