|
说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
|
|
1) data class
数据类
1.
An information system developing framework which encapsulates the business requirement alterations via an object-relation data access layer based on data class was researched and implemented.
信息系统的开发通常要求系统具有灵活快速地适应业务需求变化的能力,研究和实现了一个面向业务的多变的信息系统开发框架,该框架创新性地提出了基于数据类的对象—关系数据访问层来封装业务需求变化的观点,以此为基础,开发人员可以应用业务配置的方式来部署业务数据,并定义业务逻辑和用户界面。
2.
To avoid mistake,we should make out the data class in Mathematica.
Mathematica不属于强类型语言 ,很少报告数据类型失配的错误 ,为避免此类错误的发生 ,应深入了解Mathe matica的数据类。
2) data classifying
数据分类
1.
This paper presents a new data classifying method based on combination of neural network and decision tree.
提出了一种将神经网络和决策树相结合的数据分类新方法。
3) categorical data
分类数据
1.
Objective The statistical method for repeated measures categorical data analysis was introduced and applied to clinical trials.
目的介绍分类数据重复测量资料的统计分析及其在临床试验中的应用。
2.
Concerning the categorical characteristics of spatial data, a rule-based spatial co-location method in categorical data is introduced.
针对空间分类数据的特性,提出一种空间分类数据同位规则挖掘算法。
3.
Existing outlier mining approaches lack valid processing for categorical data.
离群数据的挖掘 (outlier mining,简称离群挖掘 )是数据挖掘的重要内容 ,现有的离群数据挖掘算法大多对分类数据 (categorical data)缺乏有效的处理 ,提出了基于规则的分类数据离群挖掘方法 ,采用多层最大离群支持度 maxsup,搜索离群规则 ,有效地解决了这一问题 ,用这一方法对医学流行病数据进行了各种实验 ,分析了该方法的适用范围、性能 ,验证了方法正确性 ;另外 ,实验表明 ,经过离散化后 ,基于规则的分类数据离群挖掘算法对连续性属性的数据也是有效的 。
4) data type
数据类型
1.
Research on data types of DFL programming language;
DFL程序设计语言数据类型的研究
2.
Selection of data type of parameters in interface method of ASP component;
ASP组件接口方法参数的数据类型选择
3.
Data structure, data type and abstract data type;
数据结构、数据类型和抽象数据类型
5) Data Clustering
数据聚类
1.
Using data clustering algorithm can effectively distinguish/identify the mode of gene expression data and categorize them.
利用数据聚类方法,有效地辨别/识别基因表示数据的模式,对它们进行分类。
2.
This paper is devoted to a novel data clustering approach based on generalized cellular automata (GCA).
现有的数据聚类方法仍存在着各种不足,聚类速度和结果的质量不能满足大型、高维数据库上的聚类需求。
3.
Data clustering is an important problem in data mining.
数据聚类是数据挖掘中的一个重要课题。
6) class data flow
类数据流
1.
A software testing technology based on class data flow;
一种基于类数据流的软件测试技术
补充资料:Autocad VBA初级教程 (第六课 数据类型的转换)
上一节课我们用一个简单的公式把角度转化为弧度,这样做便于大家理解。不过VBA中有现成的方法可以转换数据类型。 我们举例说明: jd = ThisDrawing.Utility.AngleToReal(30, 0) 这个表达式把角度30度转化为弧度,结果是.523598775598299。 AngleToReal需要两个参数,前面是表示要转换角度的数字,而后面一个参数可以取值为0-4之间的整数,有如下意义: 0:十进制角度;1:度分秒格式;2:梯度;3:弧度;4:测地单位 例:id= ThisDrawing.Utility.AngleToReal("62d30' 10""", 1) 这个表达式计算62度30分10秒的弧度 再看将字符串转换为实数的方法:DistanceToReal 需要两个参数,前一个参数是表示数值的字符串,后面可以取值1-5,表示数据格式,有如下意义: 1:科学计数;2:十进制;3:工程计数——英尺加英寸;4:建筑计数——英尺加分数英寸;5:分数格式。 例:以下表达式得到一个12.5的实数 temp1 = ThisDrawing.Utility.DistanceToReal("1.25E+01", 1) temp2 = ThisDrawing.Utility.DistanceToReal("12.5", 2) temp3 = ThisDrawing.Utility.DistanceToReal("12 1/2", 5) 而realtostring方法正好相反,它把一个实数转换为字符串。它需要3个参数 第一个参数是一个实数,第二个参数表示数据格式,含义同上,最后一个参数表示精确到几位小数。 temp1= ThisDrawing.Utility.RealToString(12.5, 1, 3) 得到这个字符串:“1.250E+01”, 下面介绍一些数型转换函数: Cint,获得一个整数,例:Cint(3.14159) ,得到3 Cvar,获得一个Variant类型的数值,例:Cvar("123" & "00"),得到”12300” Cdate,转换为date数据类型,例:MyShortTime = CDate("11:13:14 AM") 下面的代码可以写出一串数字,从000-099。 Sub test() Dim add0 As String Dim text As String Dim p(0 To 2) As Double p(1) = 0 'Y坐标为0 p(2) = 0 'Z坐标为0 For i = 0 To 99 '开始循环 If i < 10 Then '如果小于10 add0 = "00" '需要加00 Else '否则 add0 = "0" '需要加0 End If text = add0 & CStr(i) '加零,并转换数据 p(0) = i * 100 'X坐标 Call ThisDrawing.ModelSpace.AddText(text, p, 4) '写字 Next i End Sub 重点解释条件判断语句: If 条件表达式 Then …… Else
说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条
|