POWER SPECTRUM DETERMINATION OF GIVEN SIGNAL AND LOWPASS FIR FILTER IMPLEMENTATION

5 years ago

POWER SPECTRUM DETERMINATION OF GIVEN SIGNAL THEORY: The power spectrum describes the distribution of signal power over a frequency spectrum.…

CHARACTER ORIENTED PROTOCOL AND BIT ORIENTED PROTOCOL

5 years ago

CHARACTER ORIENTED PROTOCOL: The character-oriented protocol is of an 8-bit size frame, the header which covers the source and destination…

Ethernet Standards

5 years ago

GIGABIT ETHERNET: In order to provide higher order data rates it resulted in gigabit ethernet protocol. It standard is defined…

To Plot FFT (Fast Fourier Transform Algorithms) For the Given Sequence

5 years ago

Theory: FFT is a most efficient algorithm used in speech processing, frequency estimation and communication. FFT utilizes full advantage of…

LIST in python

5 years ago

LIST List is an ordered sequence of items.It is one of the most used data type in python and is…

Numeric conversions and creation of complex number

5 years ago

We can able to convert from one numeric form to other numeric form.The following are the different conversionsInteger to float…

Data types in Python

5 years ago

• Data type specifies the type of data present inside a variable.• Every value has a data type• In python…

Types of Variables, Assigning, declaring and deleting variables.

5 years ago

Types of variables There are two types of variables in python  local and global variables. •     In Python, global variable…

Identifiers and Variables in Python

5 years ago

Identifiers in python A name in python program is called identifier.It can be a class name or function name or…

Comments and Types of comments in python

5 years ago

Comments are very important  in  writing a program.Python interpreter  ignores comment.In python , commenting  is indicated by ‘#’ ,It is…