Sets the z components of the vector field. The 'w' property is an array that may be specified as a tuple, list, numpy array, or pandas Series Returns ------- numpy.ndarray
(self)
| 1175 | |
| 1176 | @property |
| 1177 | def w(self): |
| 1178 | """ |
| 1179 | Sets the z components of the vector field. |
| 1180 | |
| 1181 | The 'w' property is an array that may be specified as a tuple, |
| 1182 | list, numpy array, or pandas Series |
| 1183 | |
| 1184 | Returns |
| 1185 | ------- |
| 1186 | numpy.ndarray |
| 1187 | """ |
| 1188 | return self["w"] |
| 1189 | |
| 1190 | @w.setter |
| 1191 | def w(self, val): |
no outgoing calls
no test coverage detected