TYPES OF MODULATION

TYPES OF MODULATION Based on the characteristics of the carrier signal, modulation can be classified as below: Amplitude Modulation. Frequency Modulation. Phase Modulation. THEORY OF AMPLITUDE MODULATION: The process of changing the amplitude of the carrier signal in...

Modulation

Modulation Modulation is the addition of information (or the signal) to an electronic or optical signal carrier. Modulation can be applied to direct current (mainly by turning it on and off), to alternating current, and to optical signals. One can think of blanket...

Communication Systems

Communication Systems In telecommunication, a communication systems is a collection of individual communications networks,transmission systems, relay stations, tributary stations, and data terminal equipment (DTE) usually capable of interconnection and inter operation...

Noise Calculation

Noise Calculation noise calculation is the process of calculating the level of noise immission using the metric dB(A). Noise immission is created by noise sources (noise emission) of various types which are propagating noise into the environment. A single source will...

Floyd warshall algorithm

Floyd warshall algorithm The Floyd warshall algorithm is for solving the All Pairs Shortest Path problem. The problem for finding shortest distances between every pair of vertices in a given edge weighted directed Graph.   An Example: Input: graph[][] = { {0, 5,...

Dijkstra’s algorithm

Dijkstra’s algorithm Dijkstra’s algorithm is very similar to Prim’s algorithm for minimum spanning tree. Like Prim’s MST, we generate a SPT (shortest path tree) with given source as root. We maintain two sets, one set contains vertices included in shortest path...