Back to Numerical Arrays (NumPy)
np.recFromstring
Create a record array from a binary string/buffer.
Syntax
np.recFromstring(datastring, dtype, shape?, offset?)
Description
Create a record array from a binary string/buffer.
Parameters
| Name | Description |
|---|---|
| datastring | - Binary data (ArrayBuffer or typed array) |
| dtype | - Structured dtype |
| shape(optional) | - Shape of output array |
| offset(optional) | - Byte offset into data |
Returns
Promise<recarray>