IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 24, 2016, 5:07:24 PM (10 years ago)
Author:
eugene
Message:

modify irls fitting to apply the multiply the modified weight by the error-based weight

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/opihi/cmd.astro/astrom_ops.c

    r39228 r39610  
    5454  ALLOCATE (data->Wx, double, N);
    5555  ALLOCATE (data->Wy, double, N);
     56  ALLOCATE (data->Qx, double, N);
     57  ALLOCATE (data->Qy, double, N);
     58  ALLOCATE (data->qx, double, N);
     59  ALLOCATE (data->qy, double, N);
    5660  ALLOCATE (data->index, int, N);
    5761  return TRUE;
     
    6872  FREE (data->Wx);
    6973  FREE (data->Wy);
     74  FREE (data->Qx);
     75  FREE (data->Qy);
     76  FREE (data->qx);
     77  FREE (data->qy);
    7078  FREE (data->index);
    7179}
Note: See TracChangeset for help on using the changeset viewer.