calc_it_V2 | R Documentation |
Berechntet die Funktionswerte eines Polynoms für gegebenen Vektor.
calc_it_V2(seeds,poly_roots,c_calculation_depth,digits)
seeds |
complex vector |
poly_roots |
complex roots vector # roots of the polynom => solve(poly) |
c_calculation_depth |
#how many iterrations steps (depth of calculation) |
digits |
how many decimal digit till calculation stop |
polynom <-polynom::polynomial(coef = c(-0.2,-1,1,0,0,1))
roots <- solve(polynom)
seeds <- expand.grid(seq(-2,2, length.out = 200),seq(-2,2, length.out = 200))
seeds <- complex(real = seeds$Var1, imaginary = seeds$Var2)
calc_it_V2(seeds,roots,100,6)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.