如何使用matlab通讯工具箱的函数实现RS编译码

如何使用matlab通讯工具箱的函数实现RS编译码,第1张

void UART_SER(void) interrupt 4

{

unsigned char Temp

// unsigned char i

if(RI)

{

RI=0

Temp=SBUF

res=Temp

TempData[0]=dofly_DuanMa[Temp/16]

TempData[1]=dofly_DuanMa[Temp%16]

}

if(TI)

TI=0

}

传递给plot的一个曲线绘制参数.

matlab help里有解释.我使用时一般都默认.

色彩字符颜色线型字符线型格式标记符号数据点形式标记符号数据点形式

y 黄- 实线. 点<小于号

m 紫: 点线o 圆s 正方形

c 青-. 点划线x 叉号d 菱形

r 红- - 虚线+ 加号h 六角星

g 绿* 星号p 五角星

b 蓝v 向下三角形

w 白^ 向上三角形

k 黑>大于号

>>help plot:

PLOT Linear plot.

PLOT(X,Y) plots vector Y versus vector X. If X or Y is a matrix,

then the vector is plotted versus the rows or columns of the matrix,

whichever line up. If X is a scalar and Y is a vector, disconnected

line objects are created and plotted as discrete points vertically at

X.

PLOT(Y) plots the columns of Y versus their index.

If Y is complex, PLOT(Y) is equivalent to PLOT(real(Y),imag(Y)).

In all other uses of PLOT, the imaginary part is ignored.

Various line types, plot symbols and colors may be obtained with

PLOT(X,Y,S) where S is a character string made from one element

from any or all the following 3 columns:

b blue . point - solid

g green o circle : dotted

r red x x-mark -.dashdot

c cyan + plus --dashed

m magenta * star (none) no line

y yellows square

k black d diamond

w white v triangle (down)

^ triangle (up)

<triangle (left)

>triangle (right)

p pentagram

h hexagram

For example, PLOT(X,Y,'c+:') plots a cyan dotted line with a plus

at each data pointPLOT(X,Y,'bd') plots blue diamond at each data

point but does not draw any line.

PLOT(X1,Y1,S1,X2,Y2,S2,X3,Y3,S3,...) combines the plots defined by

the (X,Y,S) triples, where the X's and Y's are vectors or matrices

and the S's are strings.

For example, PLOT(X,Y,'y-',X,Y,'go') plots the data twice, with a

solid yellow line interpolating green circles at the data points.

The PLOT command, if no color is specified, makes automatic use of

the colors specified by the axes ColorOrder property. By default,

PLOT cycles through the colors in the ColorOrder property. For

monochrome systems, PLOT cycles over the axes LineStyleOrder property.

Note that RGB colors in the ColorOrder property may differ from

similarly-named colors in the (X,Y,S) triples. For example, the

second axes ColorOrder property is medium green with RGB [0 .5 0],

while PLOT(X,Y,'g') plots a green line with RGB [0 1 0].

If you do not specify a marker type, PLOT uses no marker.

If you do not specify a line style, PLOT uses a solid line.

PLOT(AX,...) plots into the axes with handle AX.

PLOT returns a column vector of handles to lineseries objects, one

handle per plotted line.

The X,Y pairs, or X,Y,S triples, can be followed by

parameter/value pairs to specify additional properties

of the lines. For example, PLOT(X,Y,'LineWidth',2,'Color',[.6 0 0])

will create a plot with a dark red line width of 2 points.

Example

x = -pi:pi/10:pi

y = tan(sin(x)) - sin(tan(x))

plot(x,y,'--rs','LineWidth',2,...

'MarkerEdgeColor','k',...

'MarkerFaceColor','g',...

'MarkerSize',10)

[精华] 提供一些c书下载地址! 需要的朋友来~~

--------------------------------------------------------------------------------

作者:hancang 发表于:2006-03-16 22:35:15

【发表评论】【查看原文】【C/C++讨论区】【关闭】

C++编程思想——C++的神奇书籍 13.82 MB

·本书作者根据自己学习C++的亲身体会及多年教学经验,用简单的例子和简练的叙述讲解C++编程,别具特色。 全书共分十八章,内容涉及对象的演化、数据抽象、隐藏实现、初始化与清除、函数重载与缺省参数、输入输出流介绍、常量、内联函数、命...

钱能C++程序设计教程 6.8 MB

·钱能C++程序设计教程虽然是很老的书,不过总算是国产书中质量不错中的一本,适合C++初学者....

The C++ Standard Library 4.24 MB

·虽然也是老书,但是够经典,:-) Programming with the C++ Standard Library can certainly be difficult, but Nicolai Josuttiss The...

C++PrimerPlus 4thEdition 4.34 MB

·The fourth edition presents the ANSI C++ standard beginning with a discussion of the essential elements of C++ program...

C++ Primer 中文版(第三版)完全版 3.81 MB

·C++ Primer的第三版结合了Stanley Lippman的实践经验和Josée Lajoie对于ANSI/ISO标准C++的深入理解。这本指导书的第三版已经被重新改写过,以便更加精确地讲述标准C++的特性和用法。在本书中,对于C...

Exceptional C++ 351 KB

·本书详细地讨论了如何编写健壮高效的代码以及模块设计技术。本书采用了自问自答的语言风格,它讨论了实际程序设计中普遍存在的,又非常不易察觉的问题,并且进行了深刻的分析,提出了具有广泛意义的解决方案。本书值得每个想成为优秀c++程序员的人阅读...

Inside the C++ Object Model 2003-12-17 741 KB 378

·Bestselling author Stanley B. Lippmans Inside the C++ Model provides valuable insight into some of the internal...

Secure Programming Cookbook for C and C++ 1.34 MB

·Secure Programming Cookbook for C and C++...

The C++ Programming Language 3rdEdition 3.99 MB

·In this brand-new third edition of The C++ Programming Language, author Bjarne Stroustrup, the creator of C++, ...

C-C++ 最佳编程指南 41.28 MB

·C-C++ 最佳编程指南...

上述书籍下载地址是

深度探索C++对象模型 7.86 MB

高质量C++编程指南 326 KB

C与C++中的异常处理 53 KB

C++ Primer 题解 6.57 MB 0

Effective C++中文版 255 KB

Essential C++中文版(全) 7.88 MB

C++视频学习(RM) 1200 MB

C++沉思录 PDF版 7.46 MB

Visual C++ 运行库参考手册 8.43 MB

Visual C++ 6.0 数据库编程大全 6 10.86 MB

Visual C++经典 13.53 MB

Visual C++编程技巧 241 KB 896

Optimizing C++ 370 KB 9976

数据结构 C++ 语言描述 20.88 MB

C++ In Action 1.51 MB

Visual.C++技术内幕 78.57 MB

C++.Primer.3rd.Edition 中文完美版 4.5 MB

上述书籍去

里面找吧~~

:em17: :em17: :em17: :em11: :em11: :em11:

找到好电子书也告诉我啊~~

--------------------------------------------------------------------------------

1.vc++技术内幕第四版 (潘爱民)

ftp://210.32.157.56/课件/c++primer/vc++技术内幕IV(潘爱民).rar

2.C++经典对话系列

中文:

3.MFC Windows 程序设计(第二版)

英文版:

中文版:暂无,制作中...

4.Effective C++中文版:

5.More Effective C++中文版-zhc译

6.More Effective C++中文版-候捷译

(WQ).zip

7.Essential C++中文版(全)-候捷译

中文版(全).rar

8.深入浅出MFC 2/e

9.代码大全中文版

11.C++经典对话系列

中文:

12.MFC Windows 程序设计(第二版)

英文版:

中文版:暂无,制作中...

13.数据结构 C++ 语言描述(中文版)

14.Java编程思想中文版

ftp://202.118.72.12/pub/doc-book/Java/Java编程思想.zip

15.C++标准库英文版

ftp://166.111.64.4/incoming/新文件夹/f/The%20C++%20Standard%20Library(with%20TOC).pdf

16.Windows核心编程

英文:

17.TCP-IP详解卷1:协议

ftp://202.204.4.161/学习资料/TCPIP/TCP-IP详解卷1:协议.pdf

18.TCP-IP详解卷2:实现

ftp://202.204.4.161/学习资料/TCPIP/TCP-IP详解卷3:TCP事务协议,HTTP,NNTP.pdf

19.TCP-IP详解卷3:TCP事务协议

ftp://202.204.4.161/学习资料/TCPIP/TCP-IP详解卷2:实现.pdf

20.实用算法的分析与程序设计

ftp://202.204.8.10/[4]%20编程资源/[%20书籍资料%20]/[算法与数据结构]/实用算法的分析与程序设计.rar

21.vc++技术内幕第四版 (潘爱民)

ftp://210.32.157.56/课件/c++primer/vc++技术内幕IV(潘爱民).rar

22.C++ Primer英文版:

23.Effective C++中文版:

24.More Effective C++中文版-zhc译

25.More Effective C++中文版-候捷译

(WQ).zip

26.Essential C++中文版(全)-候捷译

中文版(全).rar

27.Programming Windows程式开发设计指南-Petzoldi著 余孟学 译

中文版:

英文版:

28.WinAsm32汇编教程- Iczelion

29.Windows 95 程序设计指南-候捷译

30.Thinking in C++ 2nd Edition(C++编程思想)

英文版:

中文版:

31.人月神话-中文版

32.The C++ Programming Language英文

33.VC技术内幕第五版

34.com技术内幕

35.com+技术内幕

36.新编 Windows API参考大全

37.The C programming Language // By Brian W. Kernighan and Dennis M. Ritchie

下载地址:

38.C语言编程手册

下载地址:

39.Delphi 7高效数据库程序设计

By 李维

下载地址:

40.Windows网络编程(第2版)

By Anthony Jones,Jim Ohlund 清华大学出版社

下载地址:英文版:

41.Windows2000编程技术内幕

By Mickey Williams 机械工业出版社

下载地址:ftp://ftp.frontfree.net/Pub/Books/C&C++/VC/Windows2000编程技术内幕.rar

42.数据仓库

By W.H.Inmon 清华大学出版社

下载地址1:数据仓库.zip

下载地址2: ftp://ftp.math.nankai.edu.cn/Ebook/China-pub/chinapub_computerscience_multimedia/ComputerScience/%CA%FD%BE%DD%B2%D6%BF%E2/

43.编码的奥秘

By Charles Petzold 机械工业出版社

下载地址:ftp://ftp.math.nankai.edu.cn/Ebook/China-pub/chinapub_computerscience_multimedia/ComputerScience/%B1%E0%C2%EB%B5%C4%B0%C2%C3%D8/

44.编译原理及实践

By Louden, K.C 机械工业出版社

下载地址:ftp://ftp.math.nankai.edu.cn/Ebook/China-pub/chinapub_computerscience_multimedia/ComputerScience/%B1%E0%D2%EB%D4%AD%C0%ED%BC%B0%CA%B5%BC%F9/

45.Inside C++ Object Model(深度探索C++对象模型)

By Lippman 候捷译

下载地址:

46.C++标准程序库

By Josuttis

下载地址1:

下载地址2: ftp://ftp.math.nankai.edu.cn/Ebook/C_C++/The Cpp Standard Library.pdf

47.STL源码剖析

By 候捷

下载地址:ftp://ftp.math.nankai.edu.cn/Ebook/C_C++/STL源码剖析--侯捷.pdf

48.C++批判(第三版) -看看C++的坏话!

By I don't know

下载地址:

49.程序设计实践

下载地址:ftp://ftp.math.nankai.edu.cn/Ebook/China-pub/chinapub_computerscience_multimedia/%B3%CC%D0%F2%C9%E8%BC%C6%CA%B5%BC%F9/

50.c++沉思录

By Andrew Koenig Barbara Moo 人民邮电出版社

下载地址:

51.C++Builder4技术内幕 (这本书俺不知道好不好)

By I don't Know

下载地址:

52.下面两本书一般大家硬盘里都有的吧,而且很老了,但是为了全面,就提上来吧

(1)Windows 95 程式设计指南 - 候捷

下载地址:

(2)Windows 95 系统程式设计大奥秘 - 候捷

下载地址:

53. 中国大百科全书·数学

下载地址:ftp://ftp.math.nankai.edu.cn/Ebook/中国大百科全书/中国大百科全书·数学.pdf

54、4.0M Bjarne Stroustrup - The C++ Programming Language

55、1.0M Richard Stevens - TCP-IP Illustrated

56、4.5M Randall Hyde - Art Of Assembly

57、2.1M M. Abrash - Zen of Graphics Programming

58、249k Kernighan and Ritche - The C Programming Language

59、3.3M Bruce Schneier - Applied Cryptography

60、PHP4_Grundlagen_und_Profiwissen

61.《C++ Builder高级编程技术》

62.《VC++ 6.0 TLR 模板库参考手册》

63.《BORLAND C++ BUILDER 实用培训教程》

64.《Delphi高级开发指南》

65.《新编 Windows API参考大全》

ftp://book:[email protected]/pro/delphi/新编Windows_API_参考大全.rar

66.《Delphi深度历险-附书源码》

67.《Delphi 7高效数据库程序设计》

ftp://book:[email protected]/pro/delphi/李维的新书《Delphi7高效数据库程序设计》.rar

68.《Delphi7开发指南》

ftp://book:[email protected]/pro/delphi/delphi7开发指南.rar

69.《Delphi6集成开发环境》

ftp://book:[email protected]/pro/delphi/Delphi6集成开发环境.rar

70.《Delphi6数据库编程》

ftp://book:[email protected]/pro/delphi/Delphi6数据库编程.rar

72.《Delphi5.xADO_MTS_COM+高级程序设计篇》

ftp://book:[email protected]/pro/delphi/Delphi5.xADO_MTS_COM+高级程序设计篇.rar

73.《VISUAL BASIC 编程标准》

74.《Visual Basic6.0中文版程序员指南》

75.《Visual Basic 6.0 控件参考手册》

76.《Visual Basic 6.0中文版语言参考手册》

77.《Visual Basic 6.0 开发宝典》

78.《Visual Basic 6.0 实例教程》

79.《VB 6.0 中文版实用参考手册》

80.《Visual Basic 6开发人员指南》

81.《VB 和 SQL Server 编程指南(第五版)》

82.《Jbuilder 5 中文帮助》

83.《JBuilder开发人员指南》

84.《Win32的Internet函数说明》

档案大小: 245248K

85.《Visual InterDev 从入门到精通》

86.《Visual InterDev 6.0 Web 参考手册 》

87.《Visual InterDev 6.0 Guide 程序员》

88.《javascript 程序开发手册》

89.《JAVA 大全》

90.《Visual J++ 6.0 WFC 类库参考手册》

91.《Java联想(中文)》

92.《Oracle 8 实用大全》

93.《Microsoft SQL Server 管理员手册》

94.《掌握ACCESS开发》

95.《Oracle Performance Tuning and Optimization》

96.《Oracle ProC 程序设计》

97.《Oracle8初学者指南》

98.《RED HAT LINUX 6大全》

99.《RED HAT LINUX 6管理工具》

100.《VC++高级编程》

5橙色风信子


欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/yw/12038539.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-20
下一篇 2023-05-20

发表评论

登录后才能评论

评论列表(0条)

保存