• 통큰쿠폰이벤트-통합
  • 통합검색(433)
  • 리포트(424)
  • 시험자료(7)
  • 방송통신대(2)

"subplot" 검색결과 141-160 / 433건

  • 시스템 해석(폐루프(폐회로)제어계, 컨트롤러 / 필터 디자인설계, 리니어 시스템(선형계) / 견본제작, 푸리에 트렌스폼(푸리에변환) / 주파수응답)
    (2,1,1);plot(t,x1);subplot(2,1,2);plot(t,y1); figure(2) subplot(2,1,1);plot(t,x2);subplot(2,1,2);plot ... (t,y2); figure(3) subplot(2,1,1);plot( t,x );subplot(2,1,2);plot( t,y ) figure(10) subplot(3,1,1);plot ... (t,x1,'r',t,y1,'g');subplot(3,1,2);plot(t,x2,'r',t,y2,'g');subplot(3,1,3);plot( t,x,'r',t,y,'g ')리니어
    리포트 | 14페이지 | 3,000원 | 등록일 2012.02.12
  • 신호 및 시스템 MATLAB 2차 설계 과제
    방향으로 하나씩 증가하며 합하게 됨.figure(1)sum(1) = x(10) * h(1); % 중첩 합 y[n] Process 1subplot(6,3,1); stem(0,sum) ... 중첩 합 y[n] Process 16subplot(6,3,16); stem(0:15,sum); axis([0,16,0,5]); title('Process 16');sum(17) = ... (2) = x(10) * h(2) + x(9) * h(1); % 중첩 합 y[n] Process 2subplot(6,3,2); stem(0:1,sum); axis([0,16,0,5]
    리포트 | 6페이지 | 3,000원 | 등록일 2012.03.11
  • PSNR, mse, ber
    (1,2,1); imshow(img); title('origin');subplot(1,2,2); imshow(img_R); title('noised');1. ... (1,2,1); imshow(img); title('origin');subplot(1,2,2); imshow(img_R); title('noised');1. ... (1,2,1); imshow(img); title('origin');subplot(1,2,2); imshow(img_R); title('noised');1.
    리포트 | 25페이지 | 1,000원 | 등록일 2012.12.16
  • 디지털통신, 매트랩소스, QAM 송수신기 설계
    (1:20))])subplot(212), plot(0:d:D-d,r(1:ceil(D/d)));ylabel('r(t)'); xlabel('t (second)');clear scase ... 여기서 K는 1symbol당 bit수를 의미한다. 즉 각각의 waverform(=s1(t),s2(t)...s16(t))이 가지는 비트 수가 4개이다. ... sqrt(2*Es((k+3)/4)/T)*cos(phi((k+3)/4))*cos(Wo*ts)+sqrt(2*Es((k+3)/4)/T)*sin(phi((k+3)/4))*sin(Wo*ts
    리포트 | 9페이지 | 2,500원 | 등록일 2016.11.09
  • MATLAB을 이용한 Low pass filter 구현
    (3,1,1);plot(f1,abs(fa));subplot(3,1,2);plot(f1,abs(fb));subplot(3,1,3);plot(f1,abs(fa)-abs(fb));? ... fb=fft(b);N=length(a1); % 파형의 크기확인f1=(-N/2:(N/2)-1)/N*fs; % in Hz %fft plot을 위해서 x축 주파수 생성figure(1);subplot ... 소스분석먼저 웨이브파일을 wavread로 읽어드린후 0,1,2 딜레이를 만들어야 되는데, 이는 읽어드린 웨이브파일을 하나의 441000 X 2 행렬(Fs=44100 * 10sec /
    리포트 | 3페이지 | 1,000원 | 등록일 2013.01.08
  • 신시 Project(1)
    (1,2,1); imshow(img); title(`origin`); subplot(1,2,2); imshow(median_img); title(`median filtering`); ... median(x); % 중간값을 넣는다.median_img(i,j) = new_pixel; end end median_img=uint8(median_img); figure(1); subplot ... Filter ③ Adopting Medain filter to Matlab Source clear all close all img =imread(`balls.tif`); [R,C] = size
    리포트 | 13페이지 | 1,000원 | 등록일 2012.12.16
  • 이동통신시스템 2차 프로젝트
    ('determined Q 데이터');subplot(313)plot(t,Recovered)axis([0 Tb*length(s) -1 2])grid ontitle('recoverd 데이터 ... -1 2])grid ontitle('determined I 데이터');subplot(312)plot(t,Qsignal)axis([0 Tb*length(s) -1 2])grid ontitle ... *sin(2*pi*t);QPSK=(Q_idat-Q_qdat);subplot(311);plot(t, Q_idat, 'r');title('Modulated i signal')grid onsubplot
    리포트 | 15페이지 | 3,000원 | 등록일 2014.01.01
  • 신호의 표현 및 샘플링
    아래는 plot정보 설정.title('gangnam x[n] 그래프');xlabel('t(sec)');ylabel('amplitude');subplot(2,1,2) %gangnam과 ... (2,1,1) %gangnam과 missa를 담을 subplot생성, 1번째plot(t_g,xn_g(n_g)); %[0.5,0.505]초 동안 gangnam의 x[n]그래프axis ... missa를 담을 subplot생성, 2번째plot(t_m,xn_m(n_m)); %[0.5,0.505]초 동안 missa의 x[n]그래프axis tight %plot이 딱맞게 지정
    리포트 | 23페이지 | 1,500원 | 등록일 2013.08.11
  • [DSP실험]Butterworth filter를 이용한 lowpass filter 및 highpass filter (Matlab소스포함)
    (c)부터 (f)까지의 기본형 소스fid = imread('lena.bmp','bmp');subplot(2,2,1), imshow(fid);fft_fid=fft2(fid);subplot ... 실습1) 영상의 Ideal LPF를 구현하고 그 스펙트럼을 보여라fid = imread('lena.bmp','bmp');subplot(2,2,1), imshow(fid);fft_fid ... =fft2(fid);subplot(2,2,2), imshow(log(abs(fft_fid)+1),[]);mask=zeros(256,256);for y=1:1:128for x=1:1:
    리포트 | 17페이지 | 1,000원 | 등록일 2011.11.25
  • CP2_2007270397_2007270397
    . % Image를 출력해 준다.subplot(2,2,1); imshow(I_image); title(`< 원본 RGB 이미지 >`); subplot(2,2,2); imshow(I)
    리포트 | 5페이지 | 1,500원 | 등록일 2012.06.06
  • 통신시스템_AM설계
    ('Frequency')subplot(3,1,3)plot(f,fftshift(abs(Y))) %plot spectrum of the Mix Outputtitle('Spectrum of ... of the Message signaltitle('Spectrum of the Message Signal')xlabel('Frequency')subplot(3,1,2)plot(f, ... (3,1,2)plot(t,c(1:length(t))) %plot carrier signaltitle('The carrier')xlabel('Time')subplot(3,1,3)plot
    리포트 | 7페이지 | 1,500원 | 등록일 2012.01.07
  • 음성 bits sampling 주파수 변환
    에서 나눠짐c=decimate(y,8);figure(3)subplot(4,1,1);plot(y); ... (4,1,1)plot(t,y);grid ontitle('Sample 16bit 22050hz')xlabel('시간 t(sec)');ylabel('voice level');subplot ... ((2^(nbits-1))-1)*y; %양자화x=round(Yint)/(2^(nbits-1)); %양자화wavwrite(x,fs,'4bit_22050hz.wav') %% 파일로저장subplot
    리포트 | 10페이지 | 1,000원 | 등록일 2012.12.16
  • 프로그래밍 책 한권 끝내기! (필수적인 내용만 요약)(이것만 알면 충분하다)(A+)
    x+6;yd=9*x.^2-26;ydd=18*x;plot(x,y,'-b',x,yd,'--r',x,ydd,':k')■hold on/off 명령어를 이용한 다중 그래('graph 1')subplot ... 참고로 대문자를 소문자로 변환하는 내장함수는 str=lower('upper_string') 이다.st=input('대문자로바꿀 글자를 쓰시오:','s');low=['abcdefghijklmnopqrstuvwxyz ... \n',n,str,n,re,n*re)?
    리포트 | 16페이지 | 2,000원 | 등록일 2017.05.20
  • DSB-SC_DSB-LC_SSB_변,복조_시스템_MATLAB_코드및_분석포함
    (time domain)')xlabel('time domain(s)');ylabel('m(t) modulation');subplot(243) % modulation된 신호를 coherent ... + AWGN(0dB)')xlabel('time domain(s)');ylabel('m(t) + AWGN(0dB)');subplot(253) % 입력 message 신호에 SNR 10dB인 ... ');ylabel('m(t) demodulation');subplot(234)% 입력 message 신호(frequency domain)dataFT=fftshift(fft(x1));
    리포트 | 29페이지 | 1,500원 | 등록일 2011.12.18
  • 통신이론 - 주기스펙트럼 비주기스펙트럼 설계
    /w);figure;subplot(3,1,1)plot(w,f1);hold onstem(w, f1);grid onhold offtitle('F(W)->펄스 폭 타우를 고정시킨 그래프' ... /(w));figure;subplot(3,1,1) % 3 x 1 의 그래프 중 첫 번째 그래프plot(w,f1);grid onhold onstem(w, f1);hold offtitle ... );axis([-40, 40,-1.5,1.5]);xlabel('주파수 W [Hz]');ylabel('F(W)');subplot(3,1,2)w=-2*pi*10: 2*pi*0.05: 2
    리포트 | 14페이지 | 3,000원 | 등록일 2012.04.26
  • MATLAB을 이용한 Non-Causal 필터의 구현 구현
    =r(88200:88400,1); 코잘필터sr2=r3(88200:88400,1); 논코잘필터subplot(2,1,1);stem(sr);subplot(2,1,2);stem(sr2);항목내용비고결론 ... y3);wavwrite(r3,44100,'kyj3.wav');%graph, 그래프의 경우 원래 음악파일에 처음 몇초간 음소거부분이 있어서 조금 뒤부터의 음성을 그래프화 하였습니다.sr
    리포트 | 3페이지 | 2,000원 | 등록일 2013.01.08
  • UC 버클리 미국학 수업 / Chan is Missing 영화가 어떻게 San Francisco 대표하는가? / 영문레포트
    as a subplot of the film, the ideology between Jo athe flag-waving incident. ... Thus, in the personal point of view, the story contained Chinese diversity and if the subplot of the ... id=NzRVDSPlA XIC&printsec=frontcover&source=gbs_navlinks_s#) The story of ‘Chan is Missing’ starts with
    리포트 | 6페이지 | 1,500원 | 등록일 2014.02.04
  • 통신시스템_FM설계
    spectrum의 중앙에 오도록 이동시키는 함수이다.xlabel('Frequency')title('Magnitude spectrum of the mesage signal')subplot ... spectrum of the modulated signal')pause %사용자가 아무키나 누를 때까지 잠시 멈춘다.subplot(2,1,1)plot(t,m(1:length(t)) ... (Differentiate and scale phase)pause %사용자가 아무키나 누를 때까지 잠시 멈춘다.subplot(2,1,1)plot(t,m(1:length(t))) %Plot
    리포트 | 4페이지 | 2,000원 | 등록일 2012.01.07
  • MATLAB을 이용한 FIR 필터설계
    (b2,1,n,fs);[h3,f]=freqz(b3,1,n,fs);subplot(2,1,2);plot(f,abs(h1));hold on;plot(f,abs(h2),'r');hold onplot ... wn,'high', hanning(L1+1));b2=fir1(L2,wn,'high', hanning(L2+1));b3=fir1(L3,wn,'high', hanning(L3+1));subplot ... FIR필터 함수를 이용하여 구성[b1=fir1(L1,wn,'high',hanning(L1+1))]여기서 ‘high''low'입력시켜 로우패스 또는 하이 패스 필터를 만들 수 있다.% subplot
    리포트 | 5페이지 | 1,000원 | 등록일 2012.11.22
  • 문라이트 3막구조 플롯 중심 분석
    -고소하라는 선생님의 설교를 듣지 않는 샤이론.01:03:47절정 : subplot6-등교 후 불량청소년의 대장 테렐을 의자로 가격하는 샤이론.
    리포트 | 9페이지 | 17,900원 | 등록일 2018.04.07 | 수정일 2021.07.26
  • 아이템매니아 이벤트
  • 유니스터디 이벤트
AI 챗봇
2024년 09월 15일 일요일
AI 챗봇
안녕하세요. 해피캠퍼스 AI 챗봇입니다. 무엇이 궁금하신가요?
12:04 오전
문서 초안을 생성해주는 EasyAI
안녕하세요. 해피캠퍼스의 방대한 자료 중에서 선별하여 당신만의 초안을 만들어주는 EasyAI 입니다.
저는 아래와 같이 작업을 도와드립니다.
- 주제만 입력하면 목차부터 본문내용까지 자동 생성해 드립니다.
- 장문의 콘텐츠를 쉽고 빠르게 작성해 드립니다.
9월 1일에 베타기간 중 사용 가능한 무료 코인 10개를 지급해 드립니다. 지금 바로 체험해 보세요.
이런 주제들을 입력해 보세요.
- 유아에게 적합한 문학작품의 기준과 특성
- 한국인의 가치관 중에서 정신적 가치관을 이루는 것들을 문화적 문법으로 정리하고, 현대한국사회에서 일어나는 사건과 사고를 비교하여 자신의 의견으로 기술하세요
- 작별인사 독후감
방송통신대학 관련 적절한 예)
- 국내의 사물인터넷 상용화 사례를 찾아보고, 앞으로 기업에 사물인터넷이 어떤 영향을 미칠지 기술하시오
5글자 이하 주제 부적절한 예)
- 정형외과, 아동학대