Categories
- Computer Science (62)
- C Language (16)
- Coding Discussions (29)
- Linux / Unix Shell (16)
- Others (4)
- Overview (3)
- Entertainment (4)
- GNU+Linux+FOSS (40)
- Humor (17)
- Writings (5)
- Computer Science (62)
Tags
api array bash boot C++ casual combinatorics counting C program fedora firefox gcc gimp google graphics grub id3 implementation defined behaviour internet ipod linux numerical octave poll prime number Programming R random number recursion shift operators skype undefined behavior video wallpaper wordpress workflowStackOverflow
Area51 Stackexchange Proposals to Follow
Top 10
- Floating point math operations in bash
- Read multiple arguments in bash script
- Choose login manager GDM or KDM in Fedora
- C Language Constructors and Destructors with GCC
- Geeky Code Wallpaper with GIMP
- Simpson's 1/3rd Rule
- Little and Big Endian conversion
- Allegro 4.2.2
- Implement stack using a queue
- Recursive Solution to Towers of Hanoi
Recent Comments
Polls
Tag Archives: numerical
Generating random numbers from Normal distribution in C
I needed to write a random number generator in C which will generate random numbers from Normal Distribution (Gaussian Distribution). Without this component I couldn’t proceed to finish writing a C code for Heuristic Kalman Algorithm by Lyonnet and Toscano … Continue reading
Posted in Coding Discussions, Computer Science
Tagged C program, numerical, Programming, random number, workflow
1 Comment
Number of trailing zeros in factorial of an integer
An integer n is given, the task is to find the number of trailing zeros in n! .
Posted in Coding Discussions, Computer Science, Others
Tagged C program, counting, numerical, Programming
2 Comments
Simpson’s 1/3rd Rule
A brief introduction to the Simpson’s 1/3rd rule and a uniform interval Composite Simpson’s 1/3rd Rule implementation.
Trapezoidal Rule
A brief introduction to the Trapezoidal rule and a uniform interval Composite Trapezoidal Rule implementation.
Hero’s Method : Evaluating square root of a real number
A floating point number is given. the task is to evaluate the value of its square root. We will discuss how to find the square root of a real number in this post, and also present a C Language code which does this job. The value of the root will be evaluated with the Hero’s method. Continue reading
Finding qth real root of a real number
In this post we will see how to find nth roots of a positive real number. We will use the Newton-Raphson method to deduce an iterative formula, and see its convergence. Continue reading






