Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: Français - Português - Русский - 日本語
Scilab Help >> Elementary Functions > Discrete mathematics > rat

rat

Floating point rational approximation

Syntax

[N,D]=rat(X [,tol])
Y=rat(X [,tol])

Arguments

X

real vector or matrix

tol

real positive scalar, the tolerance (see below). Default value is 1d-6.

N

integer vector or matrix

D

integer vector or matrix

Y

real vector or matrix

Description

[N,D] = rat(X,tol) returns two integer matrices so that N./D is close toX in the sense that abs(N./D - X) <= tol*norm(X,1)*abs(X).

y=rat(x,tol) return the quotient N./D

The rational approximations are generated by truncating continued fraction expansions.

Examples

[n,d]=rat([3.5, 1.333333,-0.8])
[n,d]=rat(%pi)
[n,d]=rat(%pi,1.d-12)
n/d-%pi

See Also

  • int — round towards zero
  • round — round to nearest integer
Scilab Enterprises
Copyright (c) 2011-2015 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jun 15 08:27:33 CEST 2016