gcd.mult.ref {AdvBinomApps} | R Documentation |
Greatest common divisor of chip sizes
Description
Function to compute the greatest common divisor of the chip sizes of the reference products at a fixed precision.
Usage
gcd.mult.ref(A, prec = 2)
Arguments
A |
vector of chip sizes for each reference product (in mm^2). |
prec |
precision for greatest common divisor is 10^- |
Value
A.gcd |
greatest common divisor of the sizes in mm^2 (at specified precision). |
Author(s)
Daniel Kurz, Horst Lewitschnig
Maintainer: Horst Lewitschnig horst.lewitschnig@infineon.com
Examples
A<-c(48, 30, 42)
gcd.mult.ref(A)
A<-c(2.2, 3.01, 5)
gcd.mult.ref(A, prec = 2)
gcd.mult.ref(A, prec = 1)
gcd.mult.ref(A, prec = 0)
[Package AdvBinomApps version 1.0 Index]