Lines Matching defs:step
39 print_ptraccel_deltas(struct motion_filter *filter, double step)
50 printf("# plot \"gnuplot.data\" using 1:2 title \"step %.2f\"\n", step);
54 for (i = 0.0; i < 15.0; i += step) {
69 double step)
86 if (step > 1.0)
89 nevents = 1.0 * max_dx/step + 0.5;
108 dx += step;
185 "--steps=<double> ... in motion and delta modes only. Increase dx by step each round\n"
194 " custom ... custom motion filter, use --custom-points and --custom-step with this argument\n"
196 "--custom-step=<double> ... distance along the x-axis between each point, \n"
222 double step = 0.1,
234 .step = 1.0,
262 {"step", 1, 0, OPT_STEP },
267 {"custom-step", 1, 0, OPT_CUSTOM_STEP },
310 step = strtod(optarg, NULL);
311 if (step == 0.0) {
348 custom_func.step = strtod(optarg, NULL);
381 custom_func.step,
420 print_ptraccel_deltas(filter, step);
423 print_ptraccel_movement(filter, nevents, max_dx, step);