~ubuntu-branches/debian/experimental/eso-midas/experimental

« back to all changes in this revision

Viewing changes to incl/mutil.h

  • Committer: Package Import Robot
  • Author(s): Ole Streicher
  • Date: 2015-03-17 15:17:38 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20150317151738-04qxxeqm36oful9i
Tags: 15.02pl1.1-1~exp1
New upstream version

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
#endif
66
66
);
67
67
 
 
68
extern void heap_copy
 
69
(
 
70
#ifdef __STDC__
 
71
 int, float [];
 
72
#endif
 
73
);
 
74
 
 
75
extern int heap_compare
 
76
(
 
77
#ifdef __STDC__
 
78
 int, float [], float[]
 
79
#endif
 
80
);
 
81
 
 
82
extern void heap_sort
 
83
(
 
84
#ifdef __STDC__
 
85
 int, float []
 
86
#endif
 
87
);
 
88
 
68
89
extern float heap_median
69
90
(
70
91
#ifdef __STDC__
72
93
#endif
73
94
);
74
95
 
 
96
extern void std_sorti(
 
97
#ifdef __STDC__
 
98
  int array_size, int numbers[]
 
99
#endif
 
100
);
 
101
 
 
102
extern void std_sortf(
 
103
#ifdef __STDC__
 
104
  int array_size, float numbers[]
 
105
#endif
 
106
);
 
107
 
 
108
extern void std_sortd(
 
109
#ifdef __STDC__
 
110
  int array_size, double numbers[]
 
111
#endif
 
112
);
 
113
 
 
114
extern void heapSortInt(
 
115
#ifdef __STDC__
 
116
  int array_size, int numbers[], int rank[]
 
117
#endif
 
118
);
 
119
 
 
120
extern void heapSortFloat(
 
121
#ifdef __STDC__
 
122
  int array_size, float numbers[], int rank[]
 
123
#endif
 
124
);
 
125
 
 
126
extern void heapSortDouble(
 
127
#ifdef __STDC__
 
128
  int array_size, double numbers[], int rank[]
 
129
#endif
 
130
);
 
131
 
 
132
extern void heapFillRank(
 
133
#ifdef __STDC__
 
134
  int array_size, int rank[], int offset
 
135
#endif
 
136
); 
 
137
 
75
138
void fit_poly (float inimage[], float outimage[], double start,
76
139
          double step, int npix, int fit_deg);
77
140
 
78
 
extern void indexx
79
 
(
80
 
#ifdef __STDC__
81
 
 unsigned long n, float arr[], unsigned long indx[]
82
 
#endif
83
 
 );
84
 
 
85
141
extern void sort3
86
142
(
87
143
#ifdef __STDC__