• LF몰 이벤트
  • 파일시티 이벤트
  • 서울좀비 이벤트
  • 탑툰 이벤트
  • 닥터피엘 이벤트
  • 아이템베이 이벤트
  • 아이템매니아 이벤트

제너레이트 메트릭스를 이용한 Liear Block coding

*준*
최초 등록일
2010.10.25
최종 저작일
2010.10
11페이지/한글파일 한컴오피스
가격 2,500원 할인쿠폰받기
다운로드
장바구니

소개글

제너레이트 메트릭스를 이용한 Liear Block code입니다.

힘들게 한 보람을 느끼는 그런 자료 입니다.

목차

1. Add the program for decoding. Simulate the coded BER of (7,4) linear block code in the Eb/No range from 3 to 10 dB by increasing 1 dB. Save `codedber` into a file.

Now change the program for the (15,11) code considered in Part I.
2. Program to display 32 codewords corresponding to the messages 0 to 31 in integer. Capture the display and find if they are cyclic or not.

3. Program to find the minimum Hamming distance of the code.

4. Add the Gaussian noise of Eb/No = 4 dB with to the codeword of a message. Display the received sequence after BPSK detection.

5. Perform decoding. Display the syndrome, the corresponding error pattern, and decoded message. Is the decoded message same with the transmitted message?

5. Obtain the coded bit error rate (BER) in the Eb/No range from 3 to 10 dB by increasing 1 dB.

6. Compare the coded BERs of (7,4) code and (15,11) code in one plot. Which one shows a better performance? Why?

본문내용

%
clear all;
%% Parameter setting
L=1000000; % Number of iterations

G=[1 1 1 1 0 0 0; 1 0 1 0 1 0 0 ; 0 1 1 0 0 1 0 ; 1 1 0 0 0 0 1];

[k,n]=size(G);

cr=k/n; % code rate

P=G(:,1:n-k);

% Parity check matrix
H=[eye(n-k) P.`];
message=de2bi(0:2^k-1, k, `left-msb`);
% Syndrom testing
errorpattern=zeros(2^(n-k), n);
errorpattern(2:end,:)=eye(2^(n-k)-1);

syn_vec=mod(errorpattern*H`, 2);
syn_int=bi2de(syn_vec, `left-msb`);

% Make a syndrome table
syn_err_table=zeros(2^(n-k), n);
syn_err_table(syn_int+1,:)=errorpattern;

% Decoding
bpsksym=[-1 1];

% bit energy
EbNodB = 3:1:10;

uncber=zeros(size(EbNodB));
codedber=zeros(size(EbNodB));
codedper=zeros(size(EbNodB));

for snrindex=1:length(EbNodB),

EbNo=10^(EbNodB(snrindex)/10);
EcNo=EbNo*cr;
No=1/EcNo;
gain=sqrt(No/2);

message=randint(L,k);
%Encoding
본문에 포한된 주된 매트랩 코드 입니다.

참고 자료

없음

자료후기(1)

*준*
판매자 유형Bronze개인

주의사항

저작권 자료의 정보 및 내용의 진실성에 대하여 해피캠퍼스는 보증하지 않으며, 해당 정보 및 게시물 저작권과 기타 법적 책임은 자료 등록자에게 있습니다.
자료 및 게시물 내용의 불법적 이용, 무단 전재∙배포는 금지되어 있습니다.
저작권침해, 명예훼손 등 분쟁 요소 발견 시 고객센터의 저작권침해 신고센터를 이용해 주시기 바랍니다.
환불정책

해피캠퍼스는 구매자와 판매자 모두가 만족하는 서비스가 되도록 노력하고 있으며, 아래의 4가지 자료환불 조건을 꼭 확인해주시기 바랍니다.

파일오류 중복자료 저작권 없음 설명과 실제 내용 불일치
파일의 다운로드가 제대로 되지 않거나 파일형식에 맞는 프로그램으로 정상 작동하지 않는 경우 다른 자료와 70% 이상 내용이 일치하는 경우 (중복임을 확인할 수 있는 근거 필요함) 인터넷의 다른 사이트, 연구기관, 학교, 서적 등의 자료를 도용한 경우 자료의 설명과 실제 자료의 내용이 일치하지 않는 경우

이런 노하우도 있어요!더보기

최근 본 자료더보기
탑툰 이벤트
제너레이트 메트릭스를 이용한 Liear Block coding
  • 레이어 팝업
  • 레이어 팝업
  • 레이어 팝업
  • 레이어 팝업
  • 레이어 팝업