We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07b25de commit 2f9edbcCopy full SHA for 2f9edbc
src/jsrm/systems/pneumatic_planar_pcs.py
@@ -56,7 +56,7 @@ def actuation_mapping_fn(
56
n_act is the number of actuators
57
"""
58
# all segment bases and tips
59
- sms = jnp.concat([jnp.zeros((1,)), jnp.cumsum(params["l"])], axis=0)
+ sms = jnp.concatenate([jnp.zeros((1,)), jnp.cumsum(params["l"])], axis=0)
60
61
# compute the poses of all segment tips
62
chi_sms = vmap(forward_kinematics_fn, in_axes=(None, None, 0))(params, q, sms)
0 commit comments