Learn R Programming

BMisc (version 1.4.8)

mv_mult: Matrix-Vector Multiplication

Description

This function multiplies a matrix by a vector and returns a numeric vector.

Usage

mv_mult(A, v)

Value

A numeric vector resulting from the multiplication of the matrix by the vector.

Arguments

A

an nxk matrix.

v

a vector (can be stored as numeric or as a kx1 matrix)

Examples

Run this code
A <- matrix(1:9, nrow = 3, ncol = 3)
v <- c(2, 4, 6)
mv_mult(A, v)

Run the code above in your browser using DataLab