Skip to contents

This function provides an example with Roxygen2 markups. We can internally reference the sister function ff_rtest_add_basic(). Display equation is shown with $$x \cdot y$$

Usage

ff_rtest_mul_basic(ar_fl_x, ar_fl_y)

Arguments

ar_fl_x

Scalar or vector of numbers, same length as ar_fl_y

ar_fl_y

Scalar or vector of numbers, same length as ar_fl_x

Value

The product of ar_fl_x and ar_fl_y inline equation \(x \cdot y\).

See also

ff_rtest_add_basic() for addition.

Author

Fan Wang, http://fanwangecon.github.io

Examples

ff_rtest_mul_basic(1, 1)
#> [1] 1
ff_rtest_mul_basic(c(10,10), c(1,3))
#> [1] 10 30