Caesar AI Atlas

Broadcasting

Caesar AI Atlas Definition

Broadcasting is a matrix and array operation technique that virtually expands one operand so that its shape becomes compatible with another operand. It enables operations such as adding a vector to each row or column of a matrix without physically copying all values. Broadcasting is common in numerical computing and machine learning libraries.

Other Definitions

Broadcasting Source

Expanding the shape of an operand in a matrix math operation to dimensions compatible for that operation. For example, linear algebra requires that the two operands in a matrix addition operation must have the same dimensions. Consequently, you can't add a matrix of shape (m, n) to a vector of length n. Broadcasting enables this operation by virtually expanding the vector of length n to a matrix of shape (m, n) by replicating the same values down each column. Given the following definitions of A and B, linear algebra prohibits A+B because A and B have different dimensions: However, broadcasting enables the operation A+B by virtually expanding B to: Thus, A+B is now a valid operation: See the following description of broadcasting in NumPy for more details.

Related Terms