Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a c# library that provides array manipulation like numpy [closed]

Tags:

arrays

c#

numpy

I am starting to use the Numpy and really like it's array handling capabilities. Is there some library that I can use in C# that provides similar capabilities with arrays. The features I would like most are:

  • Creating one array from another
  • Easy/trival iteration of arrays of n dimension
  • Slicing of arrays
like image 502
JerryKur Avatar asked Apr 12 '13 16:04

JerryKur


1 Answers

NumPY has been ported to .NET via IronPython. Look here for the home page.

like image 56
Icemanind Avatar answered Nov 02 '22 04:11

Icemanind