Skip to content
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

Better Encapsulating for high level API #34

Closed
Oceania2018 opened this issue Oct 30, 2018 · 1 comment
Closed

Better Encapsulating for high level API #34

Oceania2018 opened this issue Oct 30, 2018 · 1 comment

Comments

@Oceania2018
Copy link
Member

We're going to add a new entry class named NumSharp. NumSharp will have our API more stable for high level usage. Just change NDArray implementation, better encapsulation of OOP, and more readable function names, trying to be as same as possible for NumPy.

var np = new NumSharp();
np.arrange(10).reshape(2, 5);
@Oceania2018 Oceania2018 mentioned this issue Oct 30, 2018
@Oceania2018
Copy link
Member Author

I added C# NumPy bridge class. Try to keep function convention same as Python NumPy

var np = new NumPy<int>();
var n = np.arange(6).reshape(3, 2);
n = np.reshape(n, 2, 6);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant