Learn R Programming

rray (version 0.1.0)

rray_hypot: Compute the square root of the sum of squares

Description

rray_hypot() computes the elementwise square root of the sum of squares of x and y.

Usage

rray_hypot(x, y)

Arguments

x, y

A vector, matrix, array or rray.

Value

An object of the common type of x and y containing the square root of the sum of squares.

Examples

Run this code
# NOT RUN {
x <- matrix(c(2, 4, 6))

# With broadcasting
rray_hypot(x, t(x))

# }

Run the code above in your browser using DataLab