CommRadComplexNumberCollection#
- class ansys.stk.core.stkobjects.CommRadComplexNumberCollection#
Class defining a collection of complex numbers.
Overview#
Import detail#
from ansys.stk.core.stkobjects import CommRadComplexNumberCollection
Property detail#
- property CommRadComplexNumberCollection.count: int#
Return the number of elements in the collection.
- property CommRadComplexNumberCollection._new_enum: EnumeratorProxy#
Return an enumerator for the collection.
Method detail#
- CommRadComplexNumberCollection.item(self, index: int) CommRadComplexNumber #
Given an index, returns the element in the collection.
- Parameters:
index :
int
- Returns:
CommRadComplexNumber
- CommRadComplexNumberCollection.remove_at(self, index: int) None #
Remove the complex value with the supplied index.
- CommRadComplexNumberCollection.add(self, real: float, imaginary: float) CommRadComplexNumber #
Add and returns a new complex value.
- CommRadComplexNumberCollection.insert_at(self, index: int, real: float, imaginary: float) CommRadComplexNumber #
Insert and returns a new complex value at the supplied index.