convex_comb: Computes convex combinations of two vectors

View source: R/utils.R

convex_combR Documentation

Computes convex combinations of two vectors

Description

Given two vectors and one or multiple coefficients in [0,1], convex combinations of vectors are computed.

Usage

convex_comb(w, x, y, simplify = TRUE)

Arguments

w

numeric in [0,1] (multiple values are allowed).

x, y

numeric vectors of equal length.

simplify

if TRUE a matrix is returned; if FALSE the output will be a list.

Examples

plot3logit:::convex_comb(c(0, 0.3, 0.5, 1), c(1, 0, 0), c(0, 1, 0))
plot3logit:::convex_comb(c(0, 0.3, 0.5, 1), c(1, 0, 0), c(0, 1, 0), FALSE)


plot3logit documentation built on July 19, 2022, 9:07 a.m.