SciSharp / NumSharp

High Performance Computation for N-D Tensors in .NET, similar API to NumPy.
https://github.com/SciSharp
Apache License 2.0
1.36k stars 189 forks source link

np.append #374

Open solarflarefx opened 4 years ago

solarflarefx commented 4 years ago

Is there an equivalent method to np.append? If not, what is the best workaround?

Nucs commented 4 years ago

Maybe np.concatenate, np.vstack or np.stack will help you. They might require reshaping to emulate np.append.