• 통큰쿠폰이벤트-통합
  • 통합검색(394)
  • 리포트(346)
  • 논문(20)
  • 시험자료(18)
  • 자기소개서(6)
  • 방송통신대(2)
  • 서식(1)
  • 이력서(1)

"Acoustical scattering theoretical model" 검색결과 21-40 / 394건

  • 논리회로설계실험 7주차 Flip flop 설계
    을 관찰함으로써 검증하였다.2) Theoretical Approach(이론)JK flip flop과 T flip flop의 truth table, schematic이 이미 강의자료 ... 의 structural modeling의 코드는 전체적으로 SR flip flop의 structural modeling과 유사함을 알 수 있다. 오른쪽의 schematic에서 볼 수 ... 의 wave이다. T = 1이고 clk이 posedge일 때 behavioral modeling의 경우 초기값이었던 Q = 1’b1이 toggle되어 0이 출력되고 structural
    리포트 | 6페이지 | 3,000원 | 등록일 2023.09.11
  • 영어 논문 메타술어 대응 한국어 표현 분석_60개 이상
    same: to introduce the reader to those theoretical orientations on language learning which seem c ... linguistic theory are newer model of language, such as the claim that language should be viewed as a c ... researchers공동연구의 결과물"This book is the result of collaboration between researchers interested in second
    리포트 | 1페이지 | 1,000원 | 등록일 2020.09.28
  • 논리회로설계실험 8주차 register 설계
    register structural modeling의 schematic을 나타낸 그림이다. input [7:0]에서 한 bit씩 1-bit register에 입력시키면 output ... [7:0]에서 한 bit씩 output을 출력함을 확인할 수 있다. 위의 schematic을 structural modeling으로 코드를 작성하면 다음과 같다.1-bit ... modeling으로 구현한다. w8 강의에서 배운 shift register의 behavioral modeling과 1-bit register module를 참고하여 구현할 수 있
    리포트 | 5페이지 | 3,000원 | 등록일 2023.09.11
  • 논리회로설계실험 5주차 Encoder 설계
    았다. 마지막으로 설계한 module을 testbench code를 이용하여 Modelsim의 simulation을 이용하여 wave를 확인하였다. Behavioral model ... ) Dataflow modeling이전에 구한 output의 Boolean expression은 Out1 = c + d, Out0 = d + bc’ 이었다.이것을 out1= c ... pattern 부분 총 세가지 부분을 skeleton code에 채워야 했다.우선 4:2 Priority Encoder의 input과 output부분은 아래와 같이 코딩하였다.다음
    리포트 | 6페이지 | 3,000원 | 등록일 2023.09.11
  • Particle size distribution & Zeta-Potential measurement by Light scattering
    1. 실험제목: Particle size distribution & Zeta-Potential measurement by Light scattering2. 실험일자: 2015년 ... 4월 27일 월요일3. 실험목적: Light scattering의 특징과 원리를 이해하고, 이를 바탕으로 입자의size distribution과 zeta-potential을 측정 ... .Light scattering method? Stactic light scattering (SLS, Elastic light scattering)분자 물질의 농도, 온도 및 산란
    리포트 | 6페이지 | 3,000원 | 등록일 2021.01.18 | 수정일 2023.01.12
  • Essay Assignment_Alto_MBA_Traditional ABC model
    urveying, this model estimates the percentage of time they spend on certain activity and then assign the ... implement and maintain the traditional ABC model because it costs lots of money and time specifically when ... result, this model’s estimates of process, product and customer costs soon became inaccurate.This
    리포트 | 5페이지 | 2,000원 | 등록일 2023.02.04 | 수정일 2023.02.06
  • 1부 자료 : 상업공간 실내디자인 스튜디오 / 계획 도면과 프리젠테이션 1
    white color emulsion spray paint 지정 석재 마감 Event hall Confloor stone Face brick Acoustic Gypsum Board ... white color emulsion spray paint Room Confloor stone Acoustic Gypsum Board light gray color concrete ... Acoustic Gypsum Board black color emulsion spray paint 지정 석재 마감 Office Confloor stone Exposed mass
    리포트 | 181페이지 | 14,000원 | 등록일 2020.09.08 | 수정일 2022.02.07
  • 모수적 추정을 통한 데이터 기반 분포 모형화 1 (Python 코딩)
    , random_seed=42)# 샘플링 결과 요약pm.summary(trace)# 결과 시각화plt.scatter(x_data, y_data, label='Data')plt.plot ... (x_data, true_a * x_data + true_b * np.sin(x_data), label='True Model', color='green')for a_, b_ in ... _data + true_b * np.sin(x_data) + np.random.normal(0, 0.5, len(x_data))# 모델 정의with pm.Model() as
    리포트 | 5페이지 | 2,500원 | 등록일 2023.08.06
  • 논리회로설계실험 3주차 Adder 설계
    은 dataflow modeling에서 sum = a^(b^cin), Cout은 Boolean expression의 그대로 cout = (a && (b || cin)) || (b && cin ... MapBoolean expression을 Karnaugh map을 이용하여 구해보자. sum과 Cout에 대한 Karnaugh map은 다음과 같이 그려진다.[sum] [c_out]위와 같이 k ... -bit adder 4개를 이어 붙여 설계할 수 있다. 첫번째 full adder에 input으로 A0, B0, C0를 받고 output으로 나온 S0과 C1중에서 C1은 다음에 연결
    리포트 | 8페이지 | 3,000원 | 등록일 2023.09.11
  • 논리회로설계실험 9주차 counter설계
    하는 과정을 거쳤다.2) Theoretical Approach(이론)2.1)Ripple counter (D flip flop)위의 schematic은 D flip flop을 이용 ... -> 1111 -> 0000로 바뀌게 되고 이는 output이 clk의 posedge마다 2진수 1이 더해지는 것과 같다. 이를 이용하면 structural modeling을 이용 ... 의 wave는 강의자료에 제공되어 있는 D flip flop을 이용해서 structural modeling으로 Ripple counter를 구현하여 simulation을 돌린 결과 출력
    리포트 | 6페이지 | 3,000원 | 등록일 2023.09.11
  • 알버트 반두라의 사회학습이론과 코칭
    theoretical construct of self-efficacy, and is also responsible for the influential 1961 Bobo doll ... conceptual tools allowed for more potent modeling of such phenomena as observational learning and s ... ability of modeling ? a means by which humans "represent actual outcomes symbolically". These models, c
    리포트 | 8페이지 | 2,000원 | 등록일 2020.06.15
  • 논리회로설계실험 4주차 MUX 설계
    modeling 방법과 skeleton code를 참고하여 구현하는 것이다. 이때 구현은 세가지 방법 중에서 교안에 나오지 않은 dataflow modeling과 gate-level ... 다.2) Theoretical Approach(이론)2.1) 4:1 MUX4:1 MUX는 a,b,c,d 4개의 input과 2개의 input selections s1, s0 그리고 ... ’a+s0b) + s1(s0’c+s0d) 로 수정하면 Data flow modeling과 Gate flow modeling에 사용할 수 있게 된다.2.2) 1:4 DEMUX1:4
    리포트 | 8페이지 | 3,000원 | 등록일 2023.09.11
  • 토양 지반공학 (논문요약발표)- Reliability Analysis of Soil Uncertainty(2022)
    방법지반의 불확실성 지반조사 결과 불확실성 존재는 필연적 : 불확실성의 원인 - 자료의 분산 (data scatter) - 시스템 오차 (Systemic error) : 불확실 ... ( 자료간 공간적 상관관계 모델 ) - stochastic site characterization ( 확률론적 현장특성 ) : random field model ( 원위치우연모델 ... 지반의 불확실성과 신뢰성 해석 - Reliability analysis of soil uncertainty- 지반신뢰성공학 공학논문 요약발표 “ 지반의 불확실성과 신뢰성해석
    리포트 | 11페이지 | 2,500원 | 등록일 2022.12.20
  • 울산과학기술원unist 대학원 인공지능학 자기소개서(학업계획서)
    , such as data preprocessing, model deployment, and scalability. By working on industry projects, I ... understanding of AI principles, advance my technical skills, and contribute to the development and ... robotics. I will take advanced courses that delve into the theoretical foundations, algorithms, and
    자기소개서 | 4페이지 | 4,000원 | 등록일 2023.07.07
  • 논리회로설계실험 2주차 XNOR gate 설계
    다. XNOR gate를 구현할 때, W2 강의에서 배운 NOR gate의 세 가지 방식 구현방법과 skeleton code를 참고하였다. 이후 Modelsim 소프트웨어를 사용 ... 하여 구현한 gate가 잘 작동하는지 Test bench code를 이용하여 파형을 확인함으로써 검증할 수 있다.2) Theoretical Approach(이론)2.1 Truth ... 을 알 수 있다.3.2) Behavioral modeling두번째로 Behavioral modeling 방법으로 XNOR gate를 구현해보았다. Behavioral model은 C
    리포트 | 5페이지 | 3,000원 | 등록일 2023.09.11
  • 자기결정성이론 논문작성과제
    tudy was set as shown in Figure 1.Figure 1. Proposed conceptual model.Hypothesis 1: Percieved ... , Hotel employees.IntroductionHotel industry have labor-intensive characteristics. It can be seen that the ... productivity. In order to achieve the hotel's goal of customer satisfaction and improve performance amid
    리포트 | 10페이지 | 8,000원 | 등록일 2022.12.29
  • 예제를 통한 회귀분석 Chapter02 2.10, 2.12
    histogram);VAR Husband Wife;RUN;PROC CORR DATA=EX10 COV PLOT=scatter(nvar=all);VAR Husband Wife;RUN;/* 단위 ... =matrix(nvar=all histogram);VAR H_m W_m;RUN;PROC CORR DATA=EX10_2 COV PLOT=scatter(nvar=all);VAR H_m W ... 과제 1 해답2.10 남편과 아내의 키 데이터(p052.txt)/* 원자료(cm) */PROC CORR DATA=EX10 COV PLOT=matrix(nvar=all
    시험자료 | 7페이지 | 1,500원 | 등록일 2019.11.29
  • Quantitative Fluorescence Analysis
    어낮아져야 하기 때문에 모든 scatter가 우상향하는 방향으로 이동하며 선형 추세선이 나타나야 하는데, 이러한 선형성에서 매우 벗어난 결과라는 것을 알 수 있다. 이는 실험 ... ppm 용액을 실험 데이터에서 제외하고 50 ppm 용액을 기준으로 다시 Stern-Volmer plot을 진행한 결과 아래 [그림 11]과 같이 우상향 scatter와 선형 ... 은 분자의 S0-S1 excitation gap, 즉 HOMO-LUMO gap이 우리 눈에 보이는 가시광선의 영역으로 들어오도록 조정된 상태에서만 관찰된다. 따라서 π-bond의 c
    리포트 | 12페이지 | 2,000원 | 등록일 2024.09.26
  • 단 3개의 데이터만 가지고 모델 추정하기 (베이지안 추정, Python source code 예제 포함)
    # Plot the data, true model, baseline, and predictionplt.scatter(x_data, y_data_new, label='Data', color ... _ * np.sin(x_data_smooth)plt.plot(x_data_smooth, y_pred, alpha=0.1, color='red')# Plot the true model ... 단 3개의 데이터만 가지고 모델 추정하기 (베이지안 추정, Python source code 예제 포함)예를 들어, y = a * x + b * sin(x)로 알려진 기존의 예측
    리포트 | 8페이지 | 2,500원 | 등록일 2023.08.15
  • [서울시립대 반도체소자] 7단원 노트정리 - MOSFETs in ICs
    → decrease, but also increase, decrease ← impurity scattering increasecf.) solution:retrograde channel ... TCADmanufacture simulationcircuit simulation ← BSIM model8. Bipolar Junction Transistorpurp.) before MOSFET, currently high frequency & analog applications ... 7. MOSFETs in ICs7-1. (1) scalingpurp.) cost, speed, power consumptiontechnologiesstrained silicon
    리포트 | 9페이지 | 2,000원 | 등록일 2021.12.31 | 수정일 2022.03.29
  • 유니스터디 이벤트
AI 챗봇
2024년 11월 25일 월요일
AI 챗봇
안녕하세요. 해피캠퍼스 AI 챗봇입니다. 무엇이 궁금하신가요?
6:34 오전
문서 초안을 생성해주는 EasyAI
안녕하세요. 해피캠퍼스의 방대한 자료 중에서 선별하여 당신만의 초안을 만들어주는 EasyAI 입니다.
저는 아래와 같이 작업을 도와드립니다.
- 주제만 입력하면 목차부터 본문내용까지 자동 생성해 드립니다.
- 장문의 콘텐츠를 쉽고 빠르게 작성해 드립니다.
이런 주제들을 입력해 보세요.
- 유아에게 적합한 문학작품의 기준과 특성
- 한국인의 가치관 중에서 정신적 가치관을 이루는 것들을 문화적 문법으로 정리하고, 현대한국사회에서 일어나는 사건과 사고를 비교하여 자신의 의견으로 기술하세요
- 작별인사 독후감