Dec 8, 2019

Monotonic Queue

competitive-programming
Preview

Motivation Problem

Given \(n \times m\) matrix \((1 \le n, m \le 3*10^3)\) you have to calculate the sum of minimum numbers in all sub-matrices of size \(a\times b\) with top left corners in \((i, j)\) over all \(1 \le i \le n-a+1\) and \(1 \le j \le m-b+1\).

Read more →

Dec 7, 2019

Noise in Communication Systems

digital-communications
Preview

The term noise refers to unwanted electrical signal in electrical systems. This unwanted signal masks the information signal, limiting the transmission rate and affecting the receivers ability to make the correct symbol decision.

In communication systems noise arises due to different sources, these sources can be classified in two categories:

  • Natural noise:
    • Atmospheric noise.
    • Noise from the sun.
    • Other galactic radiation sources.
  • Man-made noise:
    • Ignition noise.
    • Radiating electromagnetic signals.
Read more →