Skip to contents

This function sums numeric vectors

Usage

suma(x = NULL, y = NULL)

Arguments

x

Numeric

y

Numeric

Value

A number or numeric vector

Examples

suma(2, 3)
#> [1] 5
suma(c(2, 2), c(3, 3))
#> [1] 5 5