abs# metatensor.abs(A: TensorMap) → TensorMap[source]# Return a new TensorMap with the same metadata as A and absolute values of A. A→=|A| If gradients are present in A: ∇(A)→∇(|A|)=(A/|A|)∗∇A Parameters: A (TensorMap) – the input TensorMap. Returns: a new TensorMap with the same metadata as A and absolute values of A. Return type: TensorMap