You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, stacking 1-dim vectors vertically to 2-dim seems work different to NumPy:
rt::vstack([v1, v2])// stack to 1-dim, which is different to NumPy
rt::stack(([v1, v2], -1))// this is the working solution that corresponds to np.vstack
Currently, stacking 1-dim vectors vertically to 2-dim seems work different to NumPy: