asarray# AnsVec.asarray()[source]# Returns vector as a numpy array Return type: ndarray Examples >>> from ansys.mapdl.core import launch_mapdl >>> mapdl = launch_mapdl() >>> mm = mapdl.math >>> v = mm.ones(10) >>> v.asarray() [1. 1. 1. 1. 1. 1. 1. 1. 1. 1.] Copy to clipboard