simplifyline.VectorDouble¶
-
class
simplifyline.
VectorDouble
¶ Contiguous buffer of Float64. Use np.asarray() to get to get numpy array.
-
__init__
(*args, **kwargs)¶ Overloaded function.
__init__(self: simplifyline_pybind.VectorDouble, arg0: buffer) -> None
__init__(self: simplifyline_pybind.VectorDouble) -> None
__init__(self: simplifyline_pybind.VectorDouble, arg0: simplifyline_pybind.VectorDouble) -> None
Copy constructor
__init__(self: simplifyline_pybind.VectorDouble, arg0: Iterable) -> None
-
append
(self: simplifyline_pybind.VectorDouble, x: float) → None¶ Add an item to the end of the list
-
clear
(self: simplifyline_pybind.VectorDouble) → None¶ Clear the contents
-
count
(self: simplifyline_pybind.VectorDouble, x: float) → int¶ Return the number of times
x
appears in the list
-
extend
(*args, **kwargs)¶ Overloaded function.
extend(self: simplifyline_pybind.VectorDouble, L: simplifyline_pybind.VectorDouble) -> None
Extend the list by appending all the items in the given list
extend(self: simplifyline_pybind.VectorDouble, L: Iterable) -> None
Extend the list by appending all the items in the given list
-
insert
(self: simplifyline_pybind.VectorDouble, i: int, x: float) → None¶ Insert an item at a given position.
-
pop
(*args, **kwargs)¶ Overloaded function.
pop(self: simplifyline_pybind.VectorDouble) -> float
Remove and return the last item
pop(self: simplifyline_pybind.VectorDouble, i: int) -> float
Remove and return the item at index
i
-
remove
(self: simplifyline_pybind.VectorDouble, x: float) → None¶ Remove the first item from the list whose value is x. It is an error if there is no such item.
-