2016/09/28

Linear Time-Invariant (LTI) system 線性非時變系統

linear time-invariant system/LTI system 線性非時變系統

linearity 線性
input 和 output 間呈線性的對應關係

time-invariance 非時變性
當 input 在時間上有延遲時,output 也會有相同的延遲

因果線性非時變系統:
h(n) = 0, n < 0

A LTI system may be represented using the following equations with constant coefficients:
Differential Equation 微分方程式 (Continuous-Time)
Difference Equation 差分方程式 (Discrete-Time) e.g. y[n] = Σakx[n-k] + Σbky[n-k]

An LTI system has an impulse response of h(t). The output of the system y(t) can be obtained using the convolution of the input x(t) and the impulse response h(t):

y(t) = x(t) * h(t)
y[n] = x[n] * h[n]

In the frequency domain, the convolution sign * is replaced by the '·' sign for multiplication.

Y(ω) = X(ω) · H(ω)

Therefore, an LTI system convolutes the input signal with the system's impulse response in the time domain.

相關資訊

LTI system theory (Wikipedia)

Trigonometric Identities 三角恆等式

很多年沒碰數學了
看到可汗學院講解Convolution的影片
使用到 sin(A-B) = sin(A)cos(B) - cos(A)sin(B)

這些公式早已還給老師們多年
沒想到對於這些睽違已久的「朋友」
居然有一天我還得重新認識一下它們 >_<

查了一下
才知道它們叫做三角恆等式 Trigonometric Identities

以下是一些它們的兄弟

sin(A+B) = sin(A)cos(B) + cos(A)sin(B)

cos(A+B) = cos(A)cos(B)  - sin(A)sin(B)

sin(A) + sin(B) = 2sin½(A+B)cos½(A-B)

sin(A) - sin(B) = 2cos½(A+B)sin½(A-B)

sin2(A) + cos2(A) = 1

cos2(A) = ½(1 + cos(2A))

記得在國外讀書時跟台灣有點不同
比較注重的是能否理解
所以這些公式就不太需要背
考試時印象中會提供所需的式子
比較不填鴨

相關名詞

trigonometry 三角學
trigonometric functions 三角函數

conundrum 難題

參考資料

Engineering Mathematics Exposed page 170

2016/09/25

Resistance, Reactance, Impedance 電阻、電抗、阻抗

Electrical Impedance:

Z = R + jX    or     R + jXc

where

Z = impedance in ohms (Ω) 阻抗,單位為歐姆(Ω)
R = resistance in ohms (Ω) 電阻,單位為歐姆(Ω) real part 實部
X = reactance in ohms (Ω) 電抗,單位為歐姆(Ω) imaginary part 虛部

Z = V/I

X = 1/ωC = 1/2πf

ideal resistor with purely real impedance => resistive impedance

ideal inductor/capacitor with purely imaginary impedance => reactive impedance

phasor / phase vector 相量
阻抗可用相量表示

阻抗可以magnitude和phase來表示

magnitude 強度 |Z| = √(R2 + X2)
phase 相位 θ = tan-1(X/R)

Question: What's the reactance of a 2.2µF capacitor with 100Hz frequency?

Answer:

X = 1/ωC = 1/2πf = 1/(2×3.1416×100×2.2×10-6) = 723.4 Ω

Question: Circuit configuration:

Function Generator ---- C ----- Vout ----- R ---- GND
where C = 1µF and R = 2.2 kΩ

Zc = 1/jωC = j/j2ωC = - j(1/ωC) => -90°

A 2.2kΩ resistor and a  capacitor are in series. with 100Hz frequency?

2016/09/17

數學名詞 mathematical terms

mathematics 數學
math 數學(美式英文)
maths 數學(英式英文)

pure mathematics 純數學
applied mathematics 應用數學

arithmetic/arithmetics 算數
algebra 代數
geometry 幾何/幾何學
mathematical analysis 數學分析

calculus 微積分/微積分學

statistics 統計/統計學

natural number 自然數 (positive integers 正整數,如1,2,3... 或 non-negative integers 非負整數 0,1,2,3...)
integer 整數

equality 等於/等式
equal 等於
equal sign 等號
inequality 不等於/不等式

greater than 大於
less than 小於

trigonometry 三角學
trigonometric functions 三角函數

engineering mathematics / mathematical engineering 工程數學

相關資料

香港:An English-Chinese Glossary of Terms Commonly Used in the Teaching of Mathematics in Secondary Schools 中學數學科常用英漢詞彙

2016/09/13

Differential Amplifier and Operational Amplifier 差動放大器、運算放大器

differential amplifier 差動放大器

差動放大器包括了:

operational amplifier / op-amp / opamp 運算放大器

fully differential amplifier 全差動放大器

instrumentation amplifier 儀器/儀表放大器

isolation amplifier 隔離放大器

negative feedback amplifier 負回授放大器

參考資料:

differential amplifier (Wikipedia)
operational amplifier (Wikipedia)
operational amplifier applications (Wikipedia)

2016/09/01

Matlab: 轉置矩陣與反矩陣/逆矩陣 Transpose/Inverse of a Matrix

 The transpose of a matrix 轉置矩陣



The inverse of a matrix 反矩陣、逆矩陣
Matrix Inversion


確認:

The inverse of matrix c can also be written as:

>> e = c^(-1)

e =

   -1.5000    0.5000
    1.0000         0

>> c*e

ans =

     1     0
     0     1