MATLAB (4) Posted on 2019-10-16 In Etc. Transfer Function tf? 123456789101112131415>> help tftf - Transfer function model Use tf to create real-valued or complex-valued transfer function models, or to convert dynamic system models to transfer function form. sys = tf(numerator,denominator) sys = tf(numerator,denominator,ts) sys = tf(numerator,denominator,ltiSys) sys = tf(m) sys = tf(___,Name,Value) sys = tf(ltiSys) sys = tf(ltiSys,component) s = tf('s') z = tf('z',ts) Read more »
MATLAB (3) Posted on 2019-10-02 In Etc. Mass-Spring-Damper System1234567891011h=tf([1 4],[1 4 40])pole(h)zero(h)figurestep(h)h1=tf([10 40],[1 4 40])pole(h1)zero(h1)figurestep(h1) Read more »
MATLAB (2) Posted on 2019-10-02 In Etc. Bar Plots123x = -2.9:0.2:2.9;y = exp(-x.*x);bar(x,y) Stairstep Plots123x = 0:0.25:10;y = sin(x);stairs(x, y) Read more »
MATLAB (1) Posted on 2019-09-18 In Etc. Operator clc - Interpreter initialization, help <함수> - 설명 Read more »
TensorFlow (3) Posted on 2019-08-16 In 5. Machine Learning MNIST 데이터셋 훈련용 6만개와 테스트용 1만개로 이루어진 손글씨 숫자의 흑백이미지 데이터 - 여기서 다운 이미지를 다루는 경우 데이터 전처리나 포맷팅이 시간이 많이 걸리므로 이 데이터셋을 이용함 가로세로 비율은 그대로 유지하고 20x20 픽셀로 정규화(normalization)되어 있음 정규화 알고리즘(가장 낮은 것에 맞춰 전체 이미지 해상도를 감소시킴)에 사용된 anti-aliasing 처리 때문에 이미지에 회색 픽셀이 들어 있음 이미지의 중심을 계산하여 28x28 픽셀 크기의 프레임 중앙에 위치 Read more »