MathArray constructor

init(self, element)

Creates a mathematical array and places the specified element in it

def __init__(self, element):
    ...
ParameterTypeDescription
elementIMathElementThe element to place in the array

init(self, elements)

def __init__(self, elements):
    ...
ParameterTypeDescription
elementsIterable[IMathElement]

See Also