t3toolbox.corewise#

Attributes#

Functions#

corewise_add(→ NDArrayTree)

Add nested objects, X,Y -> X+Y.

corewise_sub(→ NDArrayTree)

Subtract nested objects, X,Y -> X-Y.

corewise_scale(→ NDArrayTree)

Scale nested objects, X,s -> s*X.

corewise_neg(→ NDArrayTree)

Negate nested objects, X -> -X.

corewise_dot(X, Y[, use_jax])

Dot product of nested objects, X,Y -> X.Y.

corewise_norm(X[, use_jax])

Norm of nested objects, X -> ||X||

corewise_err(X_true, X[, use_jax])

corewise_relerr(X_true, X[, use_jax])

corewise_logical_not(→ NDArrayTree)

Perform logical not operation on nested objects

Module Contents#

t3toolbox.corewise.NDArrayTree#