Constrained least-squares function. The constraint included ensures that the sum of the estimated coefficients is equal to 1 and the coefficients are positive.

constrained_lm(y, X, tol = 1e-12)

Arguments

y

A column matrix with the y values

X

The design matrix of the problem

tol

A numeric value with the tolerance specified to avoid numerical instability during the solution of the least-squares problem.

Value

This function returns a numeric vector with the values of the estimated coeffcicients.

See also