Reputation: 65
I am translating tensorflow program of python to C#. And I didn't know how to deal with the method.
I search, but it seemed poor document for NumSharp document enable(if it is my ignore, please point me out to spot).
Could you help me to find out the same method exist in Numsharp or other method(s) with same effect?
Thanks before~
Upvotes: -1
Views: 256
Reputation: 65
The Numpy which version you choose to use in C# project is important.
If you use Numpy, you could get a np.c_ counterpart as np.column_stack. This may solve your problem.
From the help of contributor in Numpy.
Upvotes: 0