diff options
author | Jean-Marc Zucconi <jmz@FreeBSD.org> | 2002-10-19 20:44:54 +0000 |
---|---|---|
committer | Jean-Marc Zucconi <jmz@FreeBSD.org> | 2002-10-19 20:44:54 +0000 |
commit | 5b210737a65fe27179976b95ed72f981153c78b8 (patch) | |
tree | 24583031291469865d7c5fa958160c532231146a /math/fudgit | |
parent | 9137b8c445e6bbb456292f21a4887224dabf783a (diff) | |
download | ports-5b210737a65fe27179976b95ed72f981153c78b8.tar.gz ports-5b210737a65fe27179976b95ed72f981153c78b8.zip |
Notes
Diffstat (limited to 'math/fudgit')
-rw-r--r-- | math/fudgit/files/patch-ab | 55 | ||||
-rw-r--r-- | math/fudgit/files/patch-ad | 34 |
2 files changed, 65 insertions, 24 deletions
diff --git a/math/fudgit/files/patch-ab b/math/fudgit/files/patch-ab index 6fe1e20739af..f4f6e590f59d 100644 --- a/math/fudgit/files/patch-ab +++ b/math/fudgit/files/patch-ab @@ -1,27 +1,34 @@ -*** src/command.c.orig Mon Nov 7 15:23:31 1994 ---- src/command.c Mon Aug 5 06:32:38 1996 -*************** -*** 244,249 **** ---- 244,251 ---- - "legendre series: n = 1,...N { Pn(X) }"}, - {"lo!rentzian", do_stfunc, "set function lorentzian", "", - "Lorentzian series: n = 3, 6...N { A[n-1]*((X*A[n])^2/((X^2-A[n-2]^2)^2+(X*A[n])^2) }"}, -+ {"n!one", do_stfunc, "set function none", "", -+ "none"}, - {"p!olynomial", do_stfunc, "set function polynomial", "", - "power series: n = 1,...N { A[n]*X^(n-1) }"}, - {"u!ser", do_stfunc, "set function user", "definition", -*************** -*** 268,273 **** ---- 270,277 ---- - "least square linear regression"}, - {"m!l_fit", do_stmeth, "set method ml_fit", "", - "Marquardt-Levenberg iterative nonlinear fit"}, -+ {"n!one", do_stmeth, "set method none", "", -+ "none"}, - {"s!vd_fit", do_stmeth, "set method svd_fit", "", - "singular value decomposition linear fit"}, - { 0, 0, 0, 0, 0 } +--- src/command.c.orig Tue Nov 8 00:23:31 1994 ++++ src/command.c Sat Oct 19 22:41:03 2002 +@@ -38,8 +38,8 @@ + extern int Ft_printversion(void); + extern Ft_mathyyparse(void); + +-extern int write_history(char *); +-extern int append_history(int, char *); ++//extern int write_history(char *); ++//extern int append_history(int, char *); + extern HIST_ENTRY **history_list(void); + + typedef union { +@@ -244,6 +244,8 @@ + "legendre series: n = 1,...N { Pn(X) }"}, + {"lo!rentzian", do_stfunc, "set function lorentzian", "", + "Lorentzian series: n = 3, 6...N { A[n-1]*((X*A[n])^2/((X^2-A[n-2]^2)^2+(X*A[n])^2) }"}, ++ {"n!one", do_stfunc, "set function none", "", ++ "none"}, + {"p!olynomial", do_stfunc, "set function polynomial", "", + "power series: n = 1,...N { A[n]*X^(n-1) }"}, + {"u!ser", do_stfunc, "set function user", "definition", +@@ -268,6 +270,8 @@ + "least square linear regression"}, + {"m!l_fit", do_stmeth, "set method ml_fit", "", + "Marquardt-Levenberg iterative nonlinear fit"}, ++ {"n!one", do_stmeth, "set method none", "", ++ "none"}, + {"s!vd_fit", do_stmeth, "set method svd_fit", "", + "singular value decomposition linear fit"}, + { 0, 0, 0, 0, 0 } *** src/fudgit.h.orig Thu Sep 8 16:02:47 1994 --- src/fudgit.h Mon Aug 5 06:32:38 1996 *************** diff --git a/math/fudgit/files/patch-ad b/math/fudgit/files/patch-ad new file mode 100644 index 000000000000..0e57e5a95455 --- /dev/null +++ b/math/fudgit/files/patch-ad @@ -0,0 +1,34 @@ +--- src/head.h~ Sat Sep 3 08:02:18 1994 ++++ src/head.h Sat Oct 19 22:35:57 2002 +@@ -84,9 +84,9 @@ + extern int Ft_varcpy(char *, char *); + extern int Ft_vgetargp (char *b, char **p, int type, char **add); + extern int Ft_vgetargp(char *b, char **p, int type, char **add); +-extern int append_history(int, char *); ++//extern int append_history(int, char *); + extern int history_expand(char *, char **); +-extern int write_history(char *); ++//extern int write_history(char *); + extern void Ft_cleanframe (void); + extern void Ft_fit (double *x, double *y, int ndata, double *sig, int mwt, double *a, double *b, double *siga, double *sigb, double *chi2, double *q); + extern void Ft_free_dmatrix(double **m, int nrl, int nrh, int ncl, int nch); +@@ -105,7 +105,7 @@ + extern void Ft_pearsn (double *x, double *y, int n, double *r, double *prob, double *z); + extern void Ft_resetindex(void); + extern void Ft_resetprog(void); +-extern void add_history(char *); ++//extern void add_history(char *); + int Ft_printversion (void); + void Ft_reaperon(void); + void Ft_reaperoff(void); +--- src/macro.c~ Mon Nov 7 22:07:40 1994 ++++ src/macro.c Sat Oct 19 22:36:09 2002 +@@ -64,7 +64,7 @@ + jmp_buf Ft_Jump; + + extern int history_expand(char *, char **); +-extern void add_history(char *); ++//extern void add_history(char *); + extern char *readline(char *); + extern int Ft_Interact; + |