January 2012

Basic features and Advantages of Microprocessors

The following features enable microprocessor to be a versatile component in an instrumentation system. Memory Decision making power based on previously entered  values Repeatability of the reading Digital read-out and interactiveness Parallel Processing Time sharing and multiprocessing Data storage, retrieval and transmission Effective control of multiple equipment in time sharing basis Microprocessors are extremely used …

Basic features and Advantages of Microprocessors Read complete article »

Distribution of different frequency range

Different Frequency Range Distribution This table might not provide all the necessary information for specific frequency range. No hard and fast rule for opting an antenna for a particular frequency be there. Many electrical factors (eg radiation efficiency, radiation pattern, maximum antenna gain, antenna impedance, frequency characteristics) and structural factors (eg shape, size, appearance, cost …

Distribution of different frequency range Read complete article »

To draw a line by using Bresenham's line drawing algorithm

to draw a line by using Bresenham’s line drawing algorithm // modified version checks slope sign and function realization #include #include #include #include #include void func(int, int, int, int); void main() { int gd=DETECT, gm; initgraph(&gd, &gm, “c:\\tc\\bgi”); int x1, y1, x2, y2, dx, dy, p; cout< cin>>x2>>y2; dx= abs(x2-x1); dy= abs(y2-y1); int slope= dy/dx; …

To draw a line by using Bresenham's line drawing algorithm Read complete article »

To calculate the value of an integer using Trapezoidal rule both when functional values are both given and values NOT given independently

Trapezoidal rule can be applied to find the value of a limiting integer programmatically in both cases whether individual functional values are given or not. A complete algorithm follows the both process below. /********* Trapezoidal rule complete algorithm 1. start 2. read n= no of intervals 3. read initial and final values ie a,b 4. …

To calculate the value of an integer using Trapezoidal rule both when functional values are both given and values NOT given independently Read complete article »

[How to] Configure TeXnic Center for Typesetting with MikTex-distribution

TeXnic Center is choice of sophisticated LaTeX editor of many people simply because TeXnic is feature loaded and comes with easy integrated environment to work on creating LaTeX documents including thesis, report and journals on Windows OS. TeXnic Center is really a great software application to typeset documents of many types. However, installing and configuring …

[How to] Configure TeXnic Center for Typesetting with MikTex-distribution Read complete article »

Scroll to Top