Skip to contents

Matrix multiplication for MLX arrays

Usage

# S3 method for class 'mlx'
x %*% y

Arguments

x, y

numeric or complex matrices or vectors.

Value

An mlx object

See also

Examples

if (FALSE) { # \dontrun{
x <- as_mlx(matrix(1:6, 2, 3))
y <- as_mlx(matrix(1:6, 3, 2))
x %*% y
} # }