In mathematics, the Fibonacci numbers are the numbers in the following integer sequence:
0,\;1,\;1,\;2,\;3,\;5,\;8,\;13,\;21,\;34,\;55,\;89,\;144,\; \ldots\; (sequence A000045 in OEIS).
By definition, the first two Fibonacci numbers are 0 and 1, and each subsequent number is the sum of the previous two. Some sources omit the initial 0, instead beginning the sequence with two 1s.
In mathematical terms, the sequence Fn of Fibonacci numbers ...
Fibonacci Series in C / C++
Posted On Saturday, April 2, 2011 By Rupam. Under Programming
In mathematics, the Fibonacci numbers are the numbers in the following integer sequence:
0,\;1,\;1,\;2,\;3,\;5,\;8,\;13,\;21,\;34,\;55,\;89,\;144,\; \ldots\; (sequence A000045 in OEIS).
By definition, the first two Fibonacci numbers are 0 and 1, and each subsequent number is the sum of the previous two. Some sources omit the initial 0, instead beginning the sequence with two 1s.
In mathematical terms, the sequence Fn of Fibonacci numbers ...
No Comments
Bezier Curve in C / C++
Posted On Saturday, April 2, 2011 By Rupam. Under Programming
A Bezier curve is a parametric curve frequently used in computer graphics and related fields. Generalizations of Bezier curves to higher dimensions are called Bezier surfaces, of which the Bezier triangle is a special case.
Program to generate Bezier Curve in C / C++
Simple way to write a program to generate Bezier Curve program in C / C++
Source Code
#include<stdio.h>
#include<graphics.h>
#include<bios.h>
#include<stdlib.h>
typedef double CoArr;
char ...
No Comments
How to develop an Android applications
Posted On Wednesday, February 2, 2011 By Rupam. Under Programming
Recently I am walking through the a demo video by Dan Morrill who builds a simple application on the Android platform.He is a member of google developer program and explain the following thing in the first cut of making applications for android
It is very easy to builds applications for android
Application are developed using android sdk (Download the SDK )
How to ...
No Comments
Brief Description of Normalization Techniques and Normal Forms
Posted On Monday, November 15, 2010 By Rupam. Under Programming
What is Normalization?
Normalization is the process of efficiently organizing data in a database. There are two goals of the normalization process: eliminating redundant data (for example, storing the same data in more than one table) and ensuring data dependencies make sense (only storing related data in a table). Both of these are worthy goals as they reduce the amount of ...
No Comments
Tips and tricks of Data Flow Diagram
Posted On Tuesday, October 19, 2010 By Rupam. Under Programming
This section describes in detail the data flow diagramming technique. It is intended to serve as a handbook to guide the reader in developing data flow diagramming skills.
Definition:
Data Flow Diagramming is a means of representing a system at any level of detail with a graphic network of symbols showing data flows, data stores, data processes, and data sources/destinations.
Purpose/Objective:
The purpose of ...
No Comments