R/quadraticPointsOnInterval.R

Defines functions quadraticPointsOnInterval

Documented in quadraticPointsOnInterval

quadraticPointsOnInterval <- function(t1, t2, n, a) a*seq(0, 1, length=n)^2 + ((t2-t1) - a)*seq(0, 1, length=n) + t1

Try the StereoMorph package in your browser

Any scripts or data that you put into this service are public.

StereoMorph documentation built on May 25, 2022, 5:06 p.m.