Flutter shutter density estimator. More...
#include <stdlib.h>
#include <iostream>
#include <fstream>
#include <vector>
#include <math.h>
#include "routines.h"
Go to the source code of this file.
Macros | |
#define | M_PI 3.14159265358979323846 |
Functions | |
int | main (int argc, char **argv) |
main function call More... | |
Flutter shutter density estimator.
argv[1] | char containg the file name of the text file containing the flutter ode coefficients |
argv[2] | char containing the name of the text file to store the estimated probability density associated to the code. |
argv[3] | flag log scale 1 to get log(1+(v)) |
Definition in file demo_flutter_density.cpp.
#define M_PI 3.14159265358979323846 |
M_PI is a POSIX definition for Pi
Definition at line 48 of file demo_flutter_density.cpp.
int main | ( | int | argc, |
char ** | argv | ||
) |
main function call
INPUTs: t, and the file name containing the flutter code, flag for Log(1+(v))
output_rho : file text.
: Overall description: Read code, compute | |, differentiate. Normalize.
The following loop implements Algo 2, step 4.
WRITE the output_rho (the density) to file : output_rho_file
WRITE the estimated w' to file : "wprime.txt"
Definition at line 62 of file demo_flutter_density.cpp.