Skip to contents

Multiplies two matrices, if they are conformable.

Usage

x %*% y

Arguments

x

Numeric or complex dibble, matrices or vectors.

y

Numeric or complex dibble, matrices or vectors.

Value

A dibble if x or y is a dibble of a matrix. A scalar numeric if both x and y are dibbles of vectors. See base::%*% for the return value of the default method.

Details

%*% overrides base::%*% to make it generic. The default method calls the base version.

See also