[SS] System의 종류 (2) : Time Invariant, Causal
·
.../Signals and Systems
Time Invariant System and Time Varying System $$y(t-t_0) = T\left\{ x(t-t_0) \right\}$$ 시스템 특성(parameters)이 시간에 따라 불변(invariant) 시간에 상관없이 같은 입력에 대해서는 같은 반응을 나타냄 시불변이 아닌 시스템을 시변(time varying) 시스템이라고 한다. 가장 많이 모델링 및 분석되는 기본적인 system은 linear time-invariant system (LTI System)이기 때문에 Time Invariant System에 대한 확실한 이해가 중요함. 커피자판기는 time invariant system인가? Causal System and Non-causal System Causal Syst..
[SS] System의 종류 (1) : Continuous, Linear
·
.../Signals and Systems
1. Continuous System & Discrete SystemContinuous System입력과 출력이 연속 신호인 시스템Discrete System입력과 출력이 이산 신호인 시스템2. Linear System & Non-linear systemLinear system $\mathcal{T}\left\{ \quad \right\}$은 다음 두가지 property를 가짐.2-1. Additivity (가산성) property$$\begin{matrix} y_1(t)=\mathcal{T}\left\{x_1(t)\right\} \\ y_2(t)=\mathcal{T}\left\{x_2(t)\right\}\end{matrix} \Rightarrow \mathcal{T}\left\{x_1(t)+x_2(t)..
[SS] System 이란?
·
.../Signals and Systems
System이란 하나의 신호를 다른 신호로 매핑(mapping) 또는 변형(transform)하는 규칙 function of functions, transformation of functions 일련의 신호(입력)를 특정한 목적에 맞도록 조작하고 처리(교환, 변환, 가공, 추출, 전송)해 다른 일련의 신호(출력)를 만드는 실체(장치) System Description에 필요한 요소들 input output (or response) 동작규칙 위의 3가지 요소에 의해 명확하게 기술됨. 주로 수학적 표현 (equation, 방정식)이 사용됨. System modeling도 System description과 유사 (modeling의 결과물이 system description으로 나오는 경우가 대다수) Syst..
[SS] Properties of Impulse Function
·
.../Signals and Systems
Impulse function (or Dirac delta function)은 이상적으로, 오직 한 점에서만 무한대의 값을 가지고,나머지에서는 0의 값을 가지며,적분시 면적인 1이 되는 함수다른 function을 분석하거나, system의 response를 측정할 때, Basis Function으로 사용됨.어떤 continuous function도 impulse function의 weighted sum으로 표현됨.Derivative (도함수) of Unit Step FunctionImpulse function은 unit step function의 derivative(도함수)라고 볼 수 있음. 유도.impulse function을 적분하면 다음이 성립함.$$\int^t_{\tau=-\infty} \delt..
[Math] Bernoulli Distribution (베르누이 분포)
·
.../Math
Bernoulli distribution (베르누이 분포)은 Probability Distribution에서 가장 단순한 분포 중 하나 임. 주로 binary classification task에서 많이 사용됨. Bernoulli Trial 결과가 2가지 중 하나로만 나오는 trial(시행, 시도, 실험)을 가르킴. 대표적인 예로 동전 던지기(Head or Tail)가 Bernoulli trial에 해당. Bernoulli Random Variable Bernoulli trial의 결과를 숫자 0,1 (또는 -1, 1)로 할당한 random variable(확률변수). discrete random variable 로 2개의 값 중 하나만 가질 수 있는 특징을 가짐. Bernoulli Distributio..
[DL] Softsign : tanh의 유사품
·
.../Math
hyperbolic tangent (=tanh)와 유사한 함수. tanh 대신 activation function으로 사용되는 경우도 있음. $$\text{softsign}(x)=\frac{x}{1+|x|}$$ softsign의 derivative는 다음과 같음. $$\dfrac{d}{dx}\text{softsign}(x)=\dfrac{1}{\left(1+|x|\right)^2}$$ 차트 비교 관련소스 import numpy as np import matplotlib.pyplot as plt x = np.linspace(-20.,20., 100) softsign = x/ (1.+np.abs(x)) logistic = 1/ (1+np.exp(-x)) tanh = np.tanh(x) fig,ax = plt...