-
The import numpy as np However, How can I append the column instead when using JAX? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
is nicely appending to the single dimension vector. However, for:
is appending to the vector as rows (axis=0), it fails to append to axis=1. How can I get c (=column bind) instead of rbind? |
Beta Was this translation helpful? Give feedback.
-
Try There's also an open issue to implement |
Beta Was this translation helpful? Give feedback.
Try
jnp.column_stack([[1,2],[3,4]])
There's also an open issue to implement
jnp.c_
(#5850)