본문 바로가기

학교 공부

환경해양학 중간고사 복기 보호되어 있는 글입니다. 더보기
과제 및 프로젝트 보호되어 있는 글입니다. 더보기
벤처창업 웹프로그래밍 1 종강 보호되어 있는 글입니다. 더보기
Positive feedback - Oscillator 더보기
14주차 데이터 분석 작업 terminal에 들어가서 pip3 install jupyter 명령어를 입력해서 jupyter를 설치한다 다음 jupyter notebook 명령어를 입력하고 엔터를 치면 주피터 노트북이 실행된다. 그 외에도 pip3 install pandas 등 명령어로 각종 패키지를 설치할 수 있다. 참고 사이트 ) https://qa-testing.tistory.com/448 * 파이선에서 csv등의 데이터파일이 파이선에서 사용이 가능한 데이터프레임으로 전환작업을 진행함. * 목적에 따라서 사용하는 데이터분석패키지를 설치하고 이에 대한 라이브러리를 연결하는 작업을 함. * 데이터분석연산을 진행하고 시각화그래프를 생성함. 더보기
12/6 다시 푸는 Assignment 1 package hw1 import scala.annotation.tailrec import scala.util.control.TailCalls._ object Main { /** * Implement given functions, which are currently left blank. (???) * **WARNING: Please read the restrictions below carefully.** * * If you do not follow these, **your submission will not be graded.** * * 1. Do not use the keyword `var`. Use `val` and `def` instead. * 2. Do not use any library func.. 더보기
HW4-(1) /** * 32-bit raw bit stream. * * bits.length must be equal to 32 * bits.head must be an MSB of the value. */ sealed trait BinaryVal { val bits: List[Boolean] } // 32-bit raw int case class BinaryInt(bits: List[Boolean]) extends BinaryVal // 32-bit raw float case class BinaryFloat(bits: List[Boolean]) extends BinaryVal BinaryVal.scala sealed trait BinaryVal { val bits : List[Boolean] } case class.. 더보기
sinusoidal steady-stage analysis Direct Current Circuit Alternaiong current Circuit 1. DC circuit & AC circuit의 차이 2. Phasors Time domain(직교좌표) --> Frequency domain(극좌표) 영역으로 옮겨서 표현하면 계산이 간단해짐. 푸리에 변환에 의해서 임의의 신호를 복소 지수 함수의 합 형태로 표현하는게 가능하기 때문에 복소평면에서 표현하는 것이 편하다. 3. Impedance 임피던스는 AC회로에서 저항이다. AC회로에서 옴의 법칙이 적용되는데, DC회로와의 차이가 있다. DC 회로는 time domain이지만, AC 회로에서는 frequency domain이라는 점이다. 4. 복소수의 의미 DC회로에서는 실수부분만 존재하닥 AC회로에서 허수가 .. 더보기