IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 25, 2019, 8:59:46 AM (7 years ago)
Author:
eugene
Message:

add functions to fit a sigmoid to a vector and to match two vectors in 1D; allow vtransitions to be restricted to a value range

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ohana.20190329/src/opihi/cmd.data/init.c

    r40733 r40752  
    8080int lookup           PROTO((int, char **));
    8181int matrix           PROTO((int, char **));
     82int match1d          PROTO((int, char **));
    8283int match2d          PROTO((int, char **));
    8384int mkrgb            PROTO((int, char **));
     
    157158int vgauss           PROTO((int, char **));
    158159int vlorentz         PROTO((int, char **));
     160int vsigmoid         PROTO((int, char **));
    159161int vellipse         PROTO((int, char **));
    160162int vmaxwell         PROTO((int, char **));
     
    279281  {1, "medimage",     medimage_command, "median image manipulation"},
    280282  {1, "matrix",       matrix,           "matrix math operations"},
     283  {1, "match1d",      match1d,          "match 2 vectors and return matched indexes"},
    281284  {1, "match2d",      match2d,          "match 2 pairs of X,Y vectors and return matched indexes"},
    282285  {1, "mkrgb",        mkrgb,            "convert 3 images to rgb jpeg (use Kapa for better control)"},
     
    353356  {1, "vgauss",       vgauss,           "fit a Gaussian to a vector"},
    354357  {1, "vlorentz",     vlorentz,         "fit a Lorentzian to a vector"},
     358  {1, "vsigmoid",     vsigmoid,         "fit a Sigmoid to a vector"},
    355359  {1, "vellipse",     vellipse,         "fit a Ellipse to a vector pair"},
    356360  {1, "vgrid",        vgrid,            "generate an image from a triplet of vectors"},
Note: See TracChangeset for help on using the changeset viewer.