104 {
105 int n_test, n_total, same_scales, threads;
106 double lowerx, upperx;
107 double lowery, uppery;
108 double margin = 0.05;
110 char *input_file, *output_file, **column;
111 long tmpfile_used = 0, columns, no_warnings = 1;
112 unsigned long pipe_flags;
113 long i, i_arg, j;
114 SCANNED_ARG *s_arg;
115 double **column_data_x, **column_data_y, *pdf;
116 int64_t *rows, rows0;
117 int32_t n_pages, i_page;
118
119 input_file = output_file = NULL;
120 pdf = NULL;
121 columns = 0;
122 column = NULL;
123 same_scales = 0;
124 threads = 1;
125
126 n_test = 50;
127 n_total = n_test * n_test;
128
130 argc =
scanargs(&s_arg, argc, argv);
131 pipe_flags = 0;
132 tmpfile_used = 0;
133 if (argc < 2) {
134 fprintf(stderr, "%s", usage);
135 exit(1);
136 }
137 for (i_arg = 1; i_arg < argc; i_arg++) {
138 if (s_arg[i_arg].arg_type == OPTION) {
140 switch (
match_string(s_arg[i_arg].list[0], option, N_OPTIONS, 0)) {
141 case SET_COLUMN:
142 columns = s_arg[i_arg].n_items - 1;
143 column =
trealloc(column,
sizeof(*column) * columns);
144 for (i = 1; i < s_arg[i_arg].n_items; i++)
145 column[i - 1] = s_arg[i_arg].list[i];
146 break;
147 case SET_MARGIN:
148 if (s_arg[i_arg].n_items != 2)
149 SDDS_Bomb(
"Invalid -margin option. Too many qualifiers.");
150 if (!
get_double(&margin, s_arg[i_arg].list[1]))
151 SDDS_Bomb(
"Invalid -margin value provided.");
152 break;
153 case SET_SAME_SCALES:
154 if (s_arg[i_arg].n_items != 1)
155 SDDS_Bomb(
"Invalid -sameScales option. No qualifiers are accepted.");
156 same_scales = 1;
157 break;
158 case SET_THREADS:
159 if (s_arg[i_arg].n_items != 2 ||
160 sscanf(s_arg[i_arg].list[1], "%d", &threads) != 1 || threads < 1)
162 break;
163 case SET_PIPE:
164 if (!
processPipeOption(s_arg[i_arg].list + 1, s_arg[i_arg].n_items - 1, &pipe_flags)) {
165 fprintf(stderr, "Error (%s): invalid -pipe syntax\n", argv[0]);
166 return 1;
167 }
168 break;
169 }
170 } else {
171 if (!input_file)
172 input_file = s_arg[i_arg].list[0];
173 else if (output_file == NULL)
174 output_file = s_arg[i_arg].list[0];
175 else {
176 fprintf(stderr, "Error (%s): too many filenames\n", argv[0]);
177 return 1;
178 }
179 }
180 }
181 processFilenames(
"sddskde2d", &input_file, &output_file, pipe_flags, no_warnings, &tmpfile_used);
182 if (!columns) {
183 fprintf(stderr, "%s", usage);
185 }
188 return 1;
189 }
190 if ((columns = expandColumnPairNames(&SDDSin, &column, NULL, columns, NULL, 0, FIND_NUMERIC_TYPE, 0)) <= 0) {
193 }
194 if (columns > 2) {
195 fprintf(stderr, "%s", usage);
196 SDDS_Bomb(
"Only 2 columns may be accepted.");
197 }
206
207
208 n_pages = 0;
209 column_data_x = NULL;
210 column_data_y = NULL;
211 rows = NULL;
214 column_data_x = (
double **)
SDDS_Realloc(column_data_x,
sizeof(*column_data_x) * (n_pages + 1));
215 column_data_y = (
double **)
SDDS_Realloc(column_data_y,
sizeof(*column_data_y) * (n_pages + 1));
216 rows = (int64_t *)
SDDS_Realloc(rows,
sizeof(*rows) * (n_pages + 1));
217 rows[n_pages] = rows0;
222 n_pages++;
223 }
224 }
225 if (n_pages == 0)
227
228 if (same_scales) {
229 double llx, lly, uux, uuy;
230 lowerx = lowery = DBL_MAX;
231 upperx = uppery = -DBL_MAX;
232 for (i_page = 0; i_page < n_pages; i_page++) {
233 find_min_max(&llx, &uux, column_data_x[i_page], rows[i_page]);
234 lowerx = MIN(llx, lowerx);
235 upperx = MAX(uux, upperx);
236 find_min_max(&lly, &uuy, column_data_y[i_page], rows[i_page]);
237 lowery = MIN(lly, lowery);
238 uppery = MAX(uuy, uppery);
239 }
240 }
241
242 pdf = malloc(sizeof(*pdf) * n_total);
243 for (i_page = 0; i_page < n_pages; i_page++) {
246 if (!same_scales) {
247 find_min_max(&lowerx, &upperx, column_data_x[i_page], rows[i_page]);
248 find_min_max(&lowery, &uppery, column_data_y[i_page], rows[i_page]);
249 }
250 double *x_array = gridX(lowerx, upperx, n_test);
251 double *y_array = gridY(lowery, uppery, n_test);
252 double hx = bandwidth(column_data_x[i_page], rows[i_page]);
253 double hy = bandwidth(column_data_y[i_page], rows[i_page]);
254#pragma omp parallel for if (threads > 1) num_threads(threads)
255 for (j = 0; j < n_total; j++) {
256 pdf[j] = kerneldensityestimate(column_data_x[i_page], column_data_y[i_page], x_array[j], y_array[j], rows[i_page], hx, hy);
257 }
264 free(column_data_x[i_page]);
265 free(column_data_y[i_page]);
266 free(x_array);
267 free(y_array);
270 }
271 free(pdf);
272 free(column_data_x);
273 free(column_data_y);
274 free(rows);
278 return 1;
279 }
280 free(column);
281 return 0;
282}
int32_t SDDS_StartPage(SDDS_DATASET *SDDS_dataset, int64_t expected_n_rows)
int32_t SDDS_SetColumnFromDoubles(SDDS_DATASET *SDDS_dataset, int32_t mode, double *data, int64_t rows,...)
Sets the values for a single data column using double-precision floating-point numbers.
int32_t SDDS_InitializeOutput(SDDS_DATASET *SDDS_dataset, int32_t data_mode, int32_t lines_per_row, const char *description, const char *contents, const char *filename)
Initializes the SDDS output dataset.
int32_t SDDS_WritePage(SDDS_DATASET *SDDS_dataset)
Writes the current data table to the output file.
int32_t SDDS_DefineColumn(SDDS_DATASET *SDDS_dataset, const char *name, const char *symbol, const char *units, const char *description, const char *format_string, int32_t type, int32_t field_length)
Defines a data column within the SDDS dataset.
int32_t SDDS_WriteLayout(SDDS_DATASET *SDDS_dataset)
Writes the SDDS layout header to the output file.
int32_t SDDS_TransferColumnDefinition(SDDS_DATASET *target, SDDS_DATASET *source, char *name, char *newName)
Transfers a column definition from a source dataset to a target dataset.
void SDDS_PrintErrors(FILE *fp, int32_t mode)
Prints recorded error messages to a specified file stream.
void SDDS_RegisterProgramName(const char *name)
Registers the executable program name for use in error messages.
void SDDS_Bomb(char *message)
Terminates the program after printing an error message and recorded errors.
void * SDDS_Realloc(void *old_ptr, size_t new_size)
Reallocates memory to a new size.
#define SDDS_DOUBLE
Identifier for the double data type.
void * trealloc(void *old_ptr, uint64_t size_of_block)
Reallocates a memory block to a new size.
int get_double(double *dptr, char *s)
Parses a double value from the given string.
char * delete_chars(char *s, char *t)
Removes all occurrences of characters found in string t from string s.
int find_min_max(double *min, double *max, double *list, int64_t n)
Finds the minimum and maximum values in a list of doubles.
long match_string(char *string, char **option, long n_options, long mode)
Matches a given string against an array of option strings based on specified modes.
long replaceFileAndBackUp(char *file, char *replacement)
Replaces a file with a replacement file and creates a backup of the original.
int scanargs(SCANNED_ARG **scanned, int argc, char **argv)
long processPipeOption(char **item, long items, unsigned long *flags)
void processFilenames(char *programName, char **input, char **output, unsigned long pipeFlags, long noWarnings, long *tmpOutputUsed)