Packages

  • package root
    Definition Classes
    root
  • package scilube

    scilube-core - Science libraries for Scala.

    scilube-core - Science libraries for Scala.

    The scilube-core package contains the base math functions for Scilube. These functions are loosely modeled after Matlab's functions. Why Matlab? For many science applications, the code is prototyped in Matlab and then ported to other languages for efficiency reasons or to satisfy deployment requirements. By having a functions with simlilar names and actions, I hope to simplify porting of applications.

    A large portion of the functionality of this package can be accessed using a single object, scilube.Matlib. The usage will be obvious to anyone who's worked in Matlab. Many functions, rather than accepting 2D matrices take 1-D Array[Double] instead.

    Definition Classes
    root
  • package collections
    Definition Classes
    scilube
  • package probability
    Definition Classes
    scilube
  • package spirelib
    Definition Classes
    scilube
  • package time

    Definition Classes
    scilube
    Since

    2013-09-11

  • Mathematics
  • Matlib
  • Probabilities
  • RichArray
  • ScalarArrayOps
  • Statistics
  • Trigonometry
o

scilube

Matlib

object Matlib extends Mathematics with Probabilities with Statistics with Trigonometry

Since

2012-06-07

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Matlib
  2. Trigonometry
  3. Statistics
  4. Probabilities
  5. Mathematics
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val HALF_PI: Double
    Definition Classes
    Trigonometry
  5. def Schrödinger[A, B](a: A, b: B): Either[A, B]

    Is the cat dead or alive?

    Is the cat dead or alive?

    A

    The type of the alive cat

    B

    The type of the dead cat

    a

    The alive cat

    b

    The deat bat

    returns

    A box ... is the cat dead or alive?

    Definition Classes
    Probabilities
  6. val TAU: Double
    Definition Classes
    Trigonometry
  7. def add(a: Array[Double], b: Array[Double]): Array[Double]

    Element by element addition

    Element by element addition

    a

    THe first array

    b

    The second array

    returns

    An array that is the element by element summation of a to b

    Definition Classes
    Mathematics
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  10. def combinations(n: BigInt, c: BigInt): BigInt

    Computes the possible number of distinct combinations of n items into groups of c items

    Computes the possible number of distinct combinations of n items into groups of c items

    n

    The number of items

    c

    The number of items in a set

    returns

    The number of combinations of n items in c sets.

    Definition Classes
    Probabilities
  11. def corr(x: Array[Double], y: Array[Double]): Double

    Calculate Pearson's correlation coefficient.

    Calculate Pearson's correlation coefficient. This is also known as the Correlation Coefficient or the Pearson product-moment correlation coefficient

    x

    x values

    y

    y values

    returns

    correlation coefficient

    Definition Classes
    Mathematics
  12. def corrcoef(x: Array[Double], y: Array[Double]): Double
    Definition Classes
    Mathematics
  13. def cot(radians: Double): Double

    Cotangent

    Cotangent

    Definition Classes
    Trigonometry
  14. def csc(radians: Double): Double

    Cosecant

    Cosecant

    Definition Classes
    Trigonometry
  15. def cumsum(data: Array[Double]): Array[Double]

    Cumulative sum of elements

    Cumulative sum of elements

    data

    values

    returns

    An array containing the cumulative sum of data

    Definition Classes
    Mathematics
  16. def diff(x: Array[Double]): Array[Double]
    Definition Classes
    Mathematics
  17. def divide(a: Array[Double], b: Array[Double]): Array[Double]

    Element by element division

    Element by element division

    a

    THe first array

    b

    The second array

    returns

    An array that is the element by element summation of a to b

    Definition Classes
    Mathematics
  18. def dot(a: Array[Double], b: Array[Double]): Double

    Calculates the dot product between 2 arrays (The dot is the project of b onto a).

    Calculates the dot product between 2 arrays (The dot is the project of b onto a). a and b must be the same size

    a

    The first array

    b

    THe second array (b will be projected onto a)

    returns

    The dot product. (b projected onto a)

    Definition Classes
    Mathematics
  19. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  21. def extrap1(x: Array[Double], y: Array[Double], xi: Array[Double]): Array[Double]

    Linear Extrapolation.

    Linear Extrapolation. Recipe is from

    x

    array of x values

    y

    array of y values

    xi

    array of x values to interpolate to

    returns

    array of y values at xi

    Definition Classes
    Mathematics
    See also

    https://stackoverflow.com/questions/32076041/extrapolation-in-java

  22. def factorial(n: BigInt, result: BigInt = 1): BigInt

    Computes factorial.

    Computes factorial. We need this for imaging in order because the number of permutations of n distinct objects is equal to the factorial of n

    n

    The value for the factorial

    result

    The accumulator of the previous iteration of factorial. Normally developers do not supply this value. Instead the default value of 1 is used.

    returns

    factorial of n

    Definition Classes
    Probabilities
  23. def fft(data: Array[Double]): Array[Complex[Double]]

    Discrete Fourier transform

    Discrete Fourier transform

    data

    values

    returns

    The fft of data

    Definition Classes
    Mathematics
  24. def fibonacci(x: Int): BigInt

    x

    The integer of interest

    returns

    The fibonacci value for the given integer

    Definition Classes
    Mathematics
  25. def fibonacciStream(x: Int): Stream[BigInt]

    Create a stream of fibonacci numbers up to the given integer

    Create a stream of fibonacci numbers up to the given integer

    x

    The integer of interest

    returns

    A Stream of numbers in a fibonacci sequence up to the fibonacci number for x

    Definition Classes
    Mathematics
  26. def find[A](data: Array[A], predicate: (A) => Boolean): Seq[Int]
  27. def fix(x: Double): Double

    Round towards zero

    Round towards zero

    x

    The number

    returns

    The number rounded towars zero

    Definition Classes
    Mathematics
  28. def fzero(fn: (Double) => Double, min: Double, max: Double): Double

    Single variable nonlinear zero finding over an interval

    Single variable nonlinear zero finding over an interval

    fn

    The function whose zero we're searching for

    min

    The interval minimum

    max

    The interval maximum

    returns

    The x value of zero for the fn

    Definition Classes
    Mathematics
  29. def fzero(fn: (Double) => Double, start: Double): Double

    Single variable nonlinear zero finding

    Single variable nonlinear zero finding

    fn

    The function whose zero we're searching for

    start

    A starting quess for the location of the zero

    returns

    The x value of zero for the fn

    Definition Classes
    Mathematics
  30. def gcd(a: Int, b: Int): Int

    Greatest common denominator

    Greatest common denominator

    Definition Classes
    Mathematics
  31. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  32. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  33. def hist(data: Array[Double], centers: Array[Double], inclusive: Boolean = false): Array[Double]

    Bins elements into bins with specified centers

    Bins elements into bins with specified centers

    data

    The data to bin

    centers

    The bins where each value represents a center of a bin. They MUST be ordered or the data will not be valid.

    inclusive

    if true values outside of the centers are excluded from results. The default is false

    returns

    The histogram of data

    Definition Classes
    Probabilities
  34. def histc(data: Array[Double], edges: Array[Double]): Array[Double]

    Bins elements using specified edges

    Bins elements using specified edges

    data

    The data to bin

    edges

    array defining the edges of each bin

    returns

    The histogram of data

    Definition Classes
    Probabilities
  35. def interp1(x: Array[Double], y: Array[Double], xi: Array[Double]): Array[Double]

    Linear interpolation

    Linear interpolation

    x

    array of x values

    y

    array of y values

    xi

    array of x values to interpolate to

    returns

    array of y values at xi

    Definition Classes
    Mathematics
    Exceptions thrown
  36. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  37. def isprime[A](n: A)(implicit arg0: Numeric[A]): Boolean

    returns

    true if the number is a prime number. False otherwise

    Definition Classes
    Mathematics
  38. def linspace(d1: Double, d2: Double, n: Int): Array[Double]

    generates n linearly-spaced points between d1 and d2.

    generates n linearly-spaced points between d1 and d2.

    d1

    The min value

    d2

    The max value

    n

    The number of points to generated

    returns

    an array of lineraly space points.

    Definition Classes
    Mathematics
  39. def logspace(d1: Double, d2: Double, n: Int): Array[Double]

    generates n logarithmically-spaced points between d1 and d2.

    generates n logarithmically-spaced points between d1 and d2.

    d1

    The min value

    d2

    The max value

    n

    The number of points to generated

    returns

    an array of lineraly space points.

    Definition Classes
    Mathematics
  40. def mad(data: Array[Double]): Array[Double]

    Mean absolute deviation

    Mean absolute deviation

    data

    data

    returns

    array of mean absolute deviation

    Definition Classes
    Statistics
  41. def mean(data: Array[Double]): Double

    data

    data

    returns

    mean value of data

    Definition Classes
    Statistics
  42. def median(data: Array[Double]): Double

    data

    data

    returns

    median value of data

    Definition Classes
    Statistics
  43. def mod(a: Double, b: Double): Double

    Modulus after divistion.

    Modulus after divistion. THis just calls the % operator; it's included to make porting Matlab code more familiar.

    a

    a value

    b

    the other value

    returns

    the modulus

    Definition Classes
    Mathematics
  44. def multiply(a: Array[Double], b: Array[Double]): Array[Double]

    Element by element multiplication

    Element by element multiplication

    a

    THe first array

    b

    The second array

    returns

    An array that is the element by element summation of a to b

    Definition Classes
    Mathematics
  45. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  46. def near(data: Array[Double], key: Double, inclusive: Boolean = true): Int

    Find the index of the array nearest to the value.

    Find the index of the array nearest to the value. The values array can contain only unique values. If it doesn't the first occurence of a value in the values array is the one used, subsequent duplicate are ignored. If the value falls outside the bounds of the array, null is returned

    data

    Values to search through for the nearest point

    key

    THe value to search for the nearest neighbor in the array

    inclusive

    If true the key must be within the values array

    returns

    The index of the array value nearest the value. -1 will be returned if the key is outside the array values

    Definition Classes
    Mathematics
  47. def norm(x: Array[Double]): Double

    Compute the norm.

    Compute the norm. Treats the array as a vector of values.

    x

    The array

    returns

    The norm (aka magnitude) of the array.

    Definition Classes
    Mathematics
  48. def normalizeAngle(radians: Double): Double

    Adjusts an angle in radians to fall between 0 and 2 * PI

    Adjusts an angle in radians to fall between 0 and 2 * PI

    returns

    The same angle but adjusted so that if falls between 0 and 2 PI

    Definition Classes
    Trigonometry
  49. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  50. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  51. def prod(data: Array[Double]): Double

    data

    The data array

    returns

    The product of the elements of data

    Definition Classes
    Mathematics
  52. def quantile(data: Array[Double], p: Array[Double], method: Int): Array[Double]

    Empirical quantile (percentile).

    Empirical quantile (percentile). Like prctile in Matlab's statistics toolbox

    data

    The data samples

    p

    The percentiles of interest (0 <= p <= 1)

    method

    The method for calculating the emperical quantile:

    1. Interpolation so that F(X_(k)) == (k-0.5)/n. (DEFAULT) 2. Interpolation so that F(X_(k)) == k/(n+1). 3. Based on the empirical distribution.
    Definition Classes
    Probabilities
  53. def quantile(data: Array[Double], p: Array[Double]): Array[Double]
    Definition Classes
    Probabilities
  54. def quantile(data: Array[Double], p: Double, method: Int): Double
    Definition Classes
    Probabilities
  55. def quantile(data: Array[Double], p: Double): Double
    Definition Classes
    Probabilities
  56. def relativecdf(y: Array[Double], y0: Array[Double], r: Array[Double]): Array[Double]

    Calculate the relative cumulative density between 2 sample sets.

    Calculate the relative cumulative density between 2 sample sets. Internally the CDF is calculated using the empirical CDF, tocdf

    y

    Samples from the comparison outcome space

    y0

    Samples from a reference outcome space

    r

    The relative density at r

    returns

    The relative cumaltive density

    See also

    ‘‘Relative Distribution Methods in the Social Sciences’’ by Mark S. Handcock and Martina Morris, Springer-Verlag, 1999,Springer-Verlag, ISBN 0387987789

  57. def relativepdf(y: Array[Double], y0: Array[Double], r: Array[Double]): Array[Double]

    Calculate relative probability density between 2 sample sets.

    Calculate relative probability density between 2 sample sets. Internally the PDF is calculated using scilube.probability.KDE.

    y

    Samples from the comparison outcome space

    y0

    Samples from a reference outcome space

    r

    The proportion (e.g. probability of y / y0 values relative to q0(r) where 0 <- r(n) <= 1

    returns

    The relative density at r

    See also

    ‘‘Relative Distribution Methods in the Social Sciences’’ by Mark S. Handcock and Martina Morris, Springer-Verlag, 1999,Springer-Verlag, ISBN 0387987789

  58. def rem(x: Double, y: Double): Double

    x

    a value

    y

    another value

    returns

    Remainder after division

    Definition Classes
    Mathematics
  59. def sec(radians: Double): Double

    Secant

    Secant

    Definition Classes
    Trigonometry
  60. def sign(x: Double): Int

    Signum function

    Signum function

    x

    a value

    returns

    The sign of x (-1 or 1)

    Definition Classes
    Mathematics
  61. def sort[A](x: Array[A])(implicit arg0: Ordering[A]): Seq[Int]

    This does not actually sort, rather it returns the sort indices of an array.

    This does not actually sort, rather it returns the sort indices of an array. This provides sort indices like Matlab's sort method. You can use the returned value to sort the array like so: import scala.math.Ordering._ // import implicit orderings val a = Array(1, 3, 2) val i = Matlab.sort(a) val b = Matlib.subset(a, i);

  62. def sort[A](x: Array[A], lt: (A, A) => Boolean): Seq[Int]

    This does not actually sort, rather it returns the sort indices of an array.

    This does not actually sort, rather it returns the sort indices of an array. This provides sort indices like Matlab's sort method. You can use the returned value to sort the array like so: val a = Array(1, 3, 2) val i = Matlab.sort(a, (i: Int, j: Int) => i < j) val b = Matlib.subset(a, i);

    A

    The type of the values to be sorted

    x

    The array to sort

    returns

    The indices of the correct sort order

  63. def std(data: Array[Double]): Double

    Standard deviation is a statistical measure of spread or variability.The standard deviation is the root mean square (RMS) deviation of the values from their arithmetic mean.

    Standard deviation is a statistical measure of spread or variability.The standard deviation is the root mean square (RMS) deviation of the values from their arithmetic mean.

    std normalizes values by N, where N is the sample size. This the Population Standard Deviation

    data

    data

    returns

    standard deviation of data

    Definition Classes
    Statistics
  64. def subset[A](data: Array[A], idx: Seq[Int])(implicit arg0: ClassTag[A]): Array[A]

    Extract a subset of an Array.

    Extract a subset of an Array. Example:

    // MATLAB equivalent:
    // a = 1:10
    // idx = [2 3 5 6]
    // b = a(idx)
    val a = (0 to 10).toArray
    val idx = Seq(2, 3, 5, 6)
    val b = Matlib.subset(a, idx)

    NOTE: This does no bounds checking!! Makes sure your indices are between 0 and data.size

    A

    The Type of the data array

    data

    The array to subset

    idx

    Indices into data to exist in the subset

    returns

    An a subset of data (e.g. In Matlab

  65. def subtract(a: Array[Double], b: Array[Double]): Array[Double]

    Element by element subtraction

    Element by element subtraction

    a

    THe first array

    b

    The second array

    returns

    An array that is the element by element summation of a to b

    Definition Classes
    Mathematics
  66. def sum(x: Array[Double]): Double
    Definition Classes
    Mathematics
  67. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  68. def toString(): String
    Definition Classes
    AnyRef → Any
  69. def tocdf(data: Array[Double]): (Array[Double], Array[Double])

    Emperical cumulative density function.

    Emperical cumulative density function. This makes no assumptions about the data

    data

    Data set to generate a CDF for

    returns

    A tuple of (cdf, x) where cdf is the cumulative density defined over x

  70. def trapz(x: Array[Double], y: Array[Double]): Double

    Trapezoidal integration

  71. def unique(a: Array[Double], occurrence: String = "last"): (Array[Double], Array[Int], Array[Int])

    Same as Matlab's unique.

    Same as Matlab's unique. For performance, if you just need the unique values use

    a.distinct

    . This method also returns the order indices.

    a.distinct }}} This method also returns the order indices.

    a

    An array

    occurrence

    The default value is occurrence = "last", which returns the index of the last occurrence of each repeated value (or row) in A, while occurrence = 'first' returns the index of the first occurrence of each repeated value (or row) in A

    returns

    A tuple of (c, ia, ic). c is the same values as in A but with no repetitions. C will be sorted. ia and ic are index arrays such that c = a(ia) and a = c(ic)

    Definition Classes
    Mathematics
  72. def variance(data: Array[Double]): Double

    Population Variance (like Matlab's var function but var is a keyword in Scala so I couldn't use it)

    Population Variance (like Matlab's var function but var is a keyword in Scala so I couldn't use it)

    data

    data

    returns

    variance of data

    Definition Classes
    Statistics
  73. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  74. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  75. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from Trigonometry

Inherited from Statistics

Inherited from Probabilities

Inherited from Mathematics

Inherited from AnyRef

Inherited from Any

Ungrouped