12 lines
186 B
Python
12 lines
186 B
Python
|
|
from typing import Any, List
|
||
|
|
|
||
|
|
from numpy import (
|
||
|
|
matrix as matrix,
|
||
|
|
)
|
||
|
|
|
||
|
|
__all__: List[str]
|
||
|
|
|
||
|
|
def bmat(obj, ldict=..., gdict=...): ...
|
||
|
|
def asmatrix(data, dtype=...): ...
|
||
|
|
mat = asmatrix
|