The official repo for Lehigh University EDUC 412 (2022 Spring)
The repo is hosted on Github https://github.com/Hedgehog-Computing/EDUC412, including the implementation of all functions.
To start using icc/lif/tcc/tif
functions, please click this link to get started:
Here are some examples of using icc/iif/tcc/tif
functions (no installation or configuration required):
*import EDUC412:icc,iif, tcc, tif
b = [-1.0, -0.5, 0, 0.5, 1.0]
a = [2.0, 1.5, 1.5, 1.5, 2.0]
c = [0,0,0,0,0]
icc(b,a,c)
*import EDUC412:icc,iif, tcc, tif
b = [-1.0, -0.5, 0, 0.5, 1.0]
a = [2.0, 1.5, 1.5, 1.5, 2.0]
c = [0,0,0,0,0]
iif(b,a,c)
*import EDUC412:icc,iif, tcc, tif
b = [-1.0, -0.5, 0, 0.5, 1.0]
a = [2.0, 1.5, 1.5, 1.5, 2.0]
c = [0,0,0,0,0]
tcc(b,a,c)
*import EDUC412:icc,iif, tcc, tif
b = [-1.0, -0.5, 0, 0.5, 1.0]
a = [2.0, 1.5, 1.5, 1.5, 2.0]
c = [0,0,0,0,0]
tif(b,a,c)
You can copy and paste the above codes or uncomment any of the functions to use them in the Hedgehog Lab playground.