C Fast Casting Data Type

I have a problem when try to change data type form one to another in C. For example, I try to casting float data type to integer or from double to integer. In the last time, I use command (int)float_number. Because this process is slow, I try to searching about fast casting data type. We

C Create Dynamic 2D array

In my last post, I create code to create 2D array in C++. Now, I try to create dynamic 2D array in C. Algorithm to create dynamic 2D array in C or C++ is same. This is a code to create dynamic 2D array in C : float **arrayf_create(int row, int col) { int i;

Linux Column Editor

Are you have any experienced with Column Editor ? I get this feature Column Editor when using Ultraedit. This method is very help out when we want to select or remove data in column mode. We can get this method with use command line in Linux, but I want to get Column Editor in interactive

C/C++ Ricker Wavelets Code

Ricker Wavelets are zero-phase wavelets with a central peak and two smaller side lobes. A Ricker Wavelets can be uniquely specified with only a single parameter “f”. It’s peak frequency as seen on the wavelet spectrum. Ricker Wavelets Equation is : After searching in internet, I get Matlab code for this Ricker Wavelets and convert