Update README.md

Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
This commit is contained in:
David Rotermund 2023-12-21 16:51:25 +01:00 committed by GitHub
parent 678a54b61d
commit 369fb7e489
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -130,6 +130,9 @@ eng = matlab.engine.start_matlab()
```python ```python
import numpy as np import numpy as np
import matlab.engine
eng = matlab.engine.start_matlab()
a = eng.rand(100, 10) a = eng.rand(100, 10)
print(type(a)) # --> <class 'mlarray.double'> print(type(a)) # --> <class 'mlarray.double'>