본문 바로가기

분류 전체보기175

Fourier Transform and System (1) Fourier Transform and system · Time-to-frequency transform - Continuous-Time Fourier Transform, CTFT - Discrete-Time Fourier Transform, DTFT - Discrete Fourier Transform, DFT · system equation - Frequency response - z-transform CTFT and DTFT · Continuous-Time Fourier Transform(CTFT) t : time in sec f : frequency in Hz x(t) ↔ X(f) 시간을 스펙트럼으로 바꾸는 것, 스펙트럼을 시간으로 바꾸는 두 가지 공식이다. 주파수를 정의하는 기본적인 식은 exp(.. 2020. 4. 24.
cnn example # Lab 11 MNIST and Convolutional Neural Network import tensorflow as tf import random # import matplotlib.pyplot as plt from tensorflow.examples.tutorials.mnist import input_data tf.set_random_seed(777) # reproducibility mnist = input_data.read_data_sets("MNIST_data/", one_hot=True) # Check out https://www.tensorflow.org/get_started/mnist/beginners for # more information about the mnist dataset .. 2020. 4. 20.
zsh 와 oh-my-zsh로 Shell 사용하기 / 테마 바꾸기 ubuntu 18.04에서 설치하기 sudo apt-get install zsh sudo sh -c "echo 'deb http://download.opensuse.org/repositories/shells:/zsh-users:/zsh-completions/xUbuntu_18.04/ /' > /etc/apt/sources.list.d/shells:zsh-users:zsh-completions.list" wget -nv https://download.opensuse.org/repositories/shells:zsh-users:zsh-completions/xUbuntu_18.04/Release.key -O Release.key sudo apt-key add - < Release.key sudo apt-get.. 2020. 4. 18.
내 컴퓨터에서 Git 시작하기 Git의 장점 중 하나는 대부분의 명령을 로컬에서 실행한다는 것이다. 원격 저장소(remote repository)정보가 필요할때만 (pull push 등) 네트워크가 필요하고 그 외에는 오프라인 환경에서도 commit이 가능하다. Git 저장소 생성 · 기존 디렉토리를 Git 저장소로 만들기 -먼저 로컬 저장소로 사용할 폴더를 생성하여 해당 폴더로 이동한다. *데스크탑으로 이동하여 git_save라는 폴더를 생성하고 git_save폴더로 이동한다. cd Desktop/ mkdir git_save cd git_save -해당 폴더에서 git init을 실행한다. git init .git 이라는 하위 디렉토리를 만든다. .git 디렉토리에는 저장소에 필요한 skeleton 파일이 들어있다. 파일 상태 확인.. 2020. 4. 17.