add#
- MapdlMath.add(obj1, obj2)[source]#
Add two APDLMath vectors or matrices.
- Parameters:
- obj1
ansys.mapdl.math.AnsVec
oransys.mapdl.math.AnsMat
Ansys object.
- obj2
ansys.mapdl.math.AnsVec
oransys.mapdl.math.AnsMat
Ansys object.
- obj1
- Returns:
Examples
Comupute the sum between two vectors.
>>> v = mm.ones(10) >>> w = mm.ones(10) >>> x = mm.add(v, w)