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


pari

pari(func,arg,prec)
:: PARI の函数 func を呼び出す.
return
func 毎に異なる.
func
PARI の函数名
arg
func の引数
prec
整数
/* 行列の固有ベクトルを求める. */
[0] pari(eigen,newmat(2,2,[[1,1],[1,2]]));
[ -1.61803398874989484819771921990 0.61803398874989484826 ]
[ 1 1 ]
/* 1 変数多項式の根を求める. */
[1] pari(roots,t^2-2);
[ -1.41421356237309504876 1.41421356237309504876 ]
参照
section setprec.


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