xray.jit.quicksort

xray.jit.quicksort

Sorts a matrix using the quicksort algorithm. See: http://www.iti.fh- flensburg.de/lang/algorithmen/sortieren/quick/quicken.htm .


Attributes

  • dimmode [0, 1]:
    1. horizontal sort
    2. vertical sort
  • planemode [0, planecount-1]:
    • specifies which plane’s values to use when sorting
  • summode [0, 1]:
    1. sort based on planemode
    2. sort based on sum of planes
  • recursions [-1, n]:
    • specifies the max recursion depth of the quicksort algorithm. A value of -1 is equivalent to an infinite max.
  • iterations [-1, n]:
    • specifies the max number of iterations of the quicksort algorithm. A value of -1 is eqivalent to an infinite max.
  • splitpoint [0, dim-1]:
    • specifies the inital location to divide the data to be sorted. Negative values return to the default, values larger than the dimsize-1 are clipped.

About

Geometry

Data

Video

Simulation