Go to the first, previous, next, last section, table of contents.


pari

pari(func,arg,prec)
:: Call PARI function func.
return
Depends on func.
func
Function name of PARI.
arg
Arguments of func.
prec
integer
/* Eigen vectors of a numerical matrix */
[0] pari(eigen,newmat(2,2,[[1,1],[1,2]]));
[ -1.61803398874989484819771921990 0.61803398874989484826 ]
[ 1 1 ]
/* Roots of a polynomial */
[1] pari(roots,t^2-2);
[ -1.41421356237309504876 1.41421356237309504876 ]
References
section setprec.


Go to the first, previous, next, last section, table of contents.