getsymboltestsamplestu.m

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

M
28
字号
%*************************************************************************
%   Copyright (C) 2005 Satelilte and Wireless Communication Lab of PKU
%   All Right Reserved.
%
%   Created     :   2006-3-15   10:00
%   Author      :   Bora (boraliu@pku.edu.cn)
%
%   File Name   :   GetSymbolTestSampleStu.m
%   Abstract    :   Function GetSymbolTestSampleStu() is a simple version
%                   of function GetSymbolTestSample() used by TA.
%                   GetSymbolTestSampleStu() simply return static test
%                   sample while GetSymbolTestSample() will return randomly
%                   created ones.
%                   
%   
%   Version     :   1.0     2006-3-15
%*************************************************************************
function [SymbolAddTestSample, SymbolSubTestSample, SymbolMulTestSample, SymbolDivTestSample, SymbolRevTestSample] = GetSymbolTestSampleStu()
SymbolAddTestSample = [ 8    12     4];

SymbolSubTestSample = [6    3    5 ];

SymbolMulTestSample = [8    5     14 ];

SymbolDivTestSample = [ 11    7     15 ];

SymbolRevTestSample = [ 7    6 ];

⌨️ 快捷键说明

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