getsymboltestsamplestu.m

来自「RS编码程序设计」· M 代码 · 共 23 行

M
23
字号

%
%   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 + -
显示快捷键?