mlx_matrix() wraps mlx_array() for the common 2-D case. It accepts the same
style arguments as base::matrix() but without recycling, so mistakes surface early.
Supply nrow or ncol (the other may be inferred from length(data)).
Usage
mlx_matrix(
data,
nrow = NULL,
ncol = NULL,
byrow = FALSE,
dtype = NULL,
device = mlx_default_device()
)Arguments
- data
Numeric, logical, or complex vector supplying the payload. Any dimension attributes are ignored; pass
dimexplicitly.- nrow, ncol
Matrix dimensions (positive integers).
- byrow
Logical; if
TRUE, fill by rows (same semantics asbase::matrix()).- dtype
Optional MLX dtype. Defaults to
"float32"for numeric input,"bool"for logical, and"complex64"for complex.- device
Execution target: supply
"gpu","cpu", or anmlx_streamcreated viamlx_new_stream(). Defaults to the currentmlx_default_device()unless noted otherwise (helpers that act on an existing array typically reuse that array's device or stream).