getpolytestsamplestu.m

来自「该程序是RS编译码器的MATLAB仿真程序」· M 代码 · 共 30 行

M
30
字号
%*************************************************************************
%   Copyright (C) 2005 Satelilte and Wireless Communication Lab of PKU
%   All Right Reserved.
%
%   Created     :   2006-3-15   13:00
%   Author      :   Bora (boraliu@pku.edu.cn)
%
%   File Name   :   GetPolyTestSampleStu.m
%   Abstract    :   Function GetPolyTestSampleStu() is a simple version
%                   of function GetPolyTestSample() used by TA.
%                   GetPolyTestSampleStu() simply return static test
%                   sample while GetPolyTestSample() will return randomly
%                   created ones.
%                   
%   
%   Version     :   1.0     2006-3-15
%*************************************************************************
function [PolyAddTestSample, PolySubTestSample, PolyMulTestSample] = GetPolyTestSampleStu()
PolyAddTestSample = [ 1    8    6    13    12     9;
                     13    11    11    7    14     9;
                     12     3    13    10     2     0 ];
                 
 PolySubTestSample = [ 2    8    12    13    12     9;
                      13    11    11    9    14     9;
                      15     3     7     4     2     0 ];
                  
PolyMulTestSample = [ 2    8    12    13    12     9     0     0     0     0     0;
                     13    11    11    9    14     9     0     0     0     0     0;
                     9     7     1     5     3    10    14     6     6     1    13 ];
                 

⌨️ 快捷键说明

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