⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 seq_to_2.m

📁 This a framework to test new ideas in transmission technology. Actual development is a LDPC-coder in
💻 M
字号:
function [s1,s2] = seq_to_2( seq );s1 = seq( 1, : );s2 = seq( 2, : );for i=1:1    for j=i+1:2        disp( [ i j ] );        disp( seq( i, : ) * seq( j, : )' );    endendclose all;title( 'xcorr( s1, s1 )' );plot( abs( xcorr( s1, s1 ) ) );figure;title( 'xcorr( s2, s2 )' );plot( abs( xcorr( s2, s2 ) ) );figure;title( 'xcorr( s1, s2 )' );plot( abs( xcorr( s1, s2 ) ) );figure;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -