Welcome![Sign In][Sign Up]
Location:
Search - textread

Search list

[J2METextReader

Description: 在J2ME中实现了文本的阅读功能,程序比较简单,可用于学习之用!-J2ME achieve in reading the text features, relatively simple procedures can be used for learning!
Platform: | Size: 53248 | Author: 范仲磊 | Hits:

[androidtextread

Description: 文本阅读器,很强大的,实现了翻页效果,适合新手学习!-Text reader, very powerful, realize the effect to scroll, suitable for beginners to learn!
Platform: | Size: 1097728 | Author: 正仔 | Hits:

[matlabReading-text-files-in-Matlab

Description: Using file io functions in Matlab is a bit of confusion due to the variety and the issue of vectorisation. In the following snippet data is read back using: fscanf : creates a vector row by row textread (or its replacement textscan): creates matrix importdata: creates matrix load: creates matrix-Using file io functions in Matlab is a bit of confusion due to the variety and the issue of vectorisation. In the following snippet data is read back using: fscanf : creates a vector row by row textread (or its replacement textscan): creates matrix importdata: creates matrix load: creates matrix
Platform: | Size: 12288 | Author: steven | Hits:

[Speech/Voice recognition/combinetextread

Description: 本软件采用微软公司先进的TTS语音合成技术,能流畅朗读中文、英语等文本,专业播音员音质,可以读小说,制作店面广告等。有慢、中、快三种语速,并可将朗读文本导出保存为WAV文件。-This software Microsoft advanced TTS voice synthesis technology, and be fluent in reading Chinese, English text, the sound quality of a professional announcer, reading novels, making store advertising. Slow, fast three speech rate, and can read aloud text export is saved as a WAV file.
Platform: | Size: 422912 | Author: xiulin | Hits:

[source in ebookTEXTSCAN

Description: 用TEXTSCAN进行文件操作,创建和关闭文件流,并结合其他的处理过程,完成相应数据功能-This example shows how to read an arbitrary format text file with textscan. This function is similar to textread, however it also allows you to read the file one block at a time, and each block can have a different format. The information in the text file test80211.txt is the result a wireless network communication quality test. Each block is a different environment (e.g., mobile, indoor, outdoor). The numerical results show the data error rate over a range of noise levels for a number of independent tests.
Platform: | Size: 1024 | Author: 王厚朴 | Hits:

[matlabMatlab-draw

Description: 如何读取数据 textread,例如通过x textread( x_inlet.txt )我们可以把文件x_inlet.txt中的数据存储到数组x中,且x的维数和大小会自动与文件x_inlet.txt的相匹配。 如何画二维曲线图 plot,例如 plot(x,y, ob- , linewidth , 2)可以画分别以xy为横纵坐标的二维曲线,线型由ob-决定。 -How to read the data textread, for example, through x textread ( x_inlet.txt ) we can store the data in the file x_inlet.txt into the array x, and the dimension and size of x will automatically match the file x_inlet.txt match. How to plot two-dimensional plot plot, for example plot (x, y, ob- , linewidth , 2) can draw a two-dimensional curve with xy as the vertical and horizontal, respectively. The line type is determined by ob-.
Platform: | Size: 1024 | Author: 古真 | Hits:

[3D Graphicmatlab

Description: 如何读取数据textread,例如通过textread( x_inlet.txt )我们可以把文件x_inlet.txt中的数据存储到数组x中,且x的维数和大小会自动与文件x_inlet.txt的相匹配。 如何画三维曲面图surf,例如 surf(x,y,z),其中xy分别为n,m个元素的一维数组时,z必须为n*m的二维数组。-How to read the data textread, for example, through x textread ( x_inlet.txt ) we can store the data in the file x_inlet.txt into the array x, and the dimension and size of x will automatically match the file x_inlet.txt match. How to draw a three-dimensional surface diagram surf, such as surf (x, y, z), where xy is a one-dimensional array of n and m elements, z must be a two-dimensional array of n* m.
Platform: | Size: 1024 | Author: 古真 | Hits:

[Graph Drawingmatlab

Description: 如何读取数据textread,例如通过textread( x_inlet.txt )我们可以把文件x_inlet.txt中的数据存储到数组x中,且x的维数和大小会自动与文件x_inlet.txt的相匹配。 如何画三维曲面图contour,例如 contour(x,y,z),其中xy分别为n,m个元素的一维数组时,z必须为n*m的二维数组。 -How to read the data textread, for example, through textread (x_inlet.txt) we can store the data in the file x_inlet.txt into the array x, and the dimension and size of x will automatically match the file x_inlet.txt. How to draw a three-dimensional surface contour, such as contour (x, y, z), where xy is a one-dimensional array of n and m elements, z must be a two-dimensional array of n* m.
Platform: | Size: 1024 | Author: 古真 | Hits:

[Graph Drawingmatlab

Description: 如何读取数据textread,例如通过xin textread( x_inlet.txt )我们可以把文件x_inlet.txt中的数据存储到数组xin中,且xin的维数和大小会自动与文件x_inlet.txt的相匹配。 如何设定坐标轴范围和坐标间距axis,set 例如 axis([0,7,0,12,-10,2])表示xyz坐标范围分别为0~7,0~12,-10~2,set(gca, XTick ,[0:1:7])表示x坐标范围为0~7,坐标间距为1.-How can we read the data textread, for example, through xin textread ( x_inlet.txt ) we can store the data in the file x_inlet.txt into the array xin, and the dimension and size of xin are automatically associated with the file x_inlet.txt match. How to set the axis range and coordinate spacing axis, set For example, axis ([0,7,0,12,10,2]) indicates that the xyz coordinate range is 0 ~ 7, 0 ~ 12,-10 ~ 2, set (gca, XTick , [0: 1: 7]) indicates that the x coordinate range is 0 to 7 and the coordinate distance is 1.
Platform: | Size: 1024 | Author: 古真 | Hits:

[matlabMatlab_SVM

Description: SVM算法实现+数据 (要用到一些包,按照代码里面的import到网站下就行) 1.读取数据:在Matlab中调用textread可读取UCI数据集,这里读取的文件是iris.data,因为文件中以逗号为分隔符,所以还要在读取方法中添加参数“‘delimiter’,‘,’”,从而在读数据的时候自动跳过分隔符。 2.调用cvx工具箱中的方法:首先需要下载cvx工具箱的压缩文件,在其目录下运行cvx_setup指令,然后调用其方法,以cvx_begin开头,cvx_end为终止符号,所有需要求解的变量以及变量大小都在variable后声明,优化目标在minimize后声明,约束条件在subject to后声明。 3.根据求出的变量ω和b来对数据进行可视化,即画出散点图和支持向量。(The realization of SVM in Matlab)
Platform: | Size: 2048 | Author: dale无双 | Hits:

CodeBus www.codebus.net