Tseries

typedef struct {    /* Chebyshev or Power series structure */
    projUV a, b;    /* power series range for evaluation */
                    /* or Chebyshev argument shift/scaling */
    struct PW_COEF *cu, *cv;
    int mu, mv;     /* maximum cu and cv index (+1 for count) */
    int power;      /* != 0 if power series, else Chebyshev */
} Tseries

Undocumented

  • Undocumented

    See more

    Declaration

    Objective-C

    struct {    /* Chebyshev or Power series structure */
        projUV a, b;    /* power series range for evaluation */
                        /* or Chebyshev argument shift/scaling */
        struct PW_COEF *cu, *cv;
        int mu, mv;     /* maximum cu and cv index (+1 for count) */
        int power;      /* != 0 if power series, else Chebyshev */
    }

    Swift

    struct Tseries