Scilab 5.4.0
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
rat
浮動小数点数の有理数近似
呼び出し手順
[N,D]=rat(x [,tol]) y=rat(x [,tol])
パラメータ
- x
実数のベクトルまたは行列
- n
整数のベクトルまたは行列
- d
整数のベクトルまたは行列
- y
実数のベクトルまたは行列
説明
[N,D] = rat(x,tol)
は,
abs(N./D - X) <= tol*abs(x)
の意味で
N./D
がx
に近くなるような
2つの整数行列を返します.
有理数近似は分数展開を丸めることにより生成されます.
デフォルトは
tol = 1.e-6*norm(X,1)
です. y =
rat(x,tol)
は商 N./D
を返します.
例
[n,d]=rat(%pi) [n,d]=rat(%pi,1.d-12) n/d-%pi
Report an issue | ||
<< primes | Discrete mathematics | elementarymatrices >> |