Learn R Programming

float (version 0.3-3)

crossprod: crossprod

Description

Croddproducts.

Usage

# S4 method for Mat
crossprod(x, y = NULL)

# S4 method for Mat tcrossprod(x, y = NULL)

Value

A float matrix (unless y is numeric; see details section).

Arguments

x

A float vector/matrix.

y

Either NULL, or a numeric/float matrix.

Details

If y is a numeric matrix, then x will be promoted to a numeric matrix, and the return will therefore be numeric (not float).

Examples

Run this code
library(float)

s = flrunif(10, 3)
crossprod(s)
tcrossprod(s)

Run the code above in your browser using DataLab