-
经纬度与直角坐标系相互转换MATLAB程序
WCS-84坐标系的X,Y,Z与经纬度之间的相互转换(WCS-84 coordinate system X, Y, Z and latitude and longitude between the conversion)
- 2020-06-26 20:00:02下载
- 积分:1
-
本程序用C语言实现了读一个.txt文档中一行数据的功能。希望对大家有用。有不对的地方请指正。...
本程序用C语言实现了读一个.txt文档中一行数据的功能。希望对大家有用。有不对的地方请指正。-This procedure using C language to implement reading a. Txt document in the line of data. Want to be useful to everyone. Where there is something wrong please correct me.
- 2022-04-12 00:08:21下载
- 积分:1
-
vad
语音识别系统运用vad技术进行识别,可以更好地进行语音识别(Recognition of speech recognition system using VAD Technology)
- 2019-05-03 21:16:12下载
- 积分:1
-
复数的四则运算
如何用数据结构实现复数的四则运算
复数的四则运算
如何用数据结构实现复数的四则运算-Plural arithmetic
- 2022-10-01 02:45:02下载
- 积分:1
-
jQuery图片轮播插件(焦点图特效)
一个支持缩略图的jquery图片轮播插件,用来在网页上生成焦点图特效或图片幻灯片效果,无鼠标点击时,本效果可自动轮播图片,兼容ie8及更高版本的IE浏览器,以及火狐、Chrome、360等主流浏览器。同时调用方法简单,只需要根据自己的html样式修改调用参数即可,插件运行效果如上图所示。
- 2022-02-06 09:09:31下载
- 积分:1
-
车载诊断标准ISO_15765-4_cn
说明: 无语了,为啥要20字,哈哈哈哈哈哈哈哈,今天天气不错(Speechless, why 20 words, ha ha ha ha ha ha ha ha ha, the weather is good today)
- 2020-04-21 10:54:56下载
- 积分:1
-
Abaqus插件
说明: 1. 定义了刀具和工件结点的接触,并定义为默认“硬接触”
2. 工件上表面定义了自接触,防止切屑穿透工件上表面
3. 有些情况下可能产生工件右边界的部分结点卷曲后进入上表面,可以额外定义工件上表面与右边界部分结点(在右边界上,但是被切下来的部分结点)的接触算法这样就不会穿透了。(1. Defined the contact between tool and workpiece node, and defined as the default "hard contact".
2. Self-contact is defined on the upper surface of the workpiece to prevent the chip from penetrating the upper surface of the workpiece
3. In some cases, part nodes of the right boundary of the workpiece may curl into the upper surface, and the contact algorithm between the upper surface of the workpiece and the right boundary part node (the part node on the right boundary, but the part node cut off) can be defined in addition, so as not to penetrate.)
- 2020-10-28 16:17:59下载
- 积分:1
-
7.RZ-51V28配套实例程序
说明: 51单片机,功能包含流水灯,数码管,等一系列本科课设需要的文件,通过c语言实现(51 single chip microcomputer, including functions of water lamp, digital tube, and a series of undergraduate course requirements of the document, through the c language)
- 2020-06-15 22:23:56下载
- 积分:1
-
Java绘图:绘制虚线与实线
Java绘图:绘制虚线与实线
public LineDemo(){
super("实线与虚线"); //调用父类构造函数
setSize(300,200); //设置窗口尺寸
setVisible(true); //设置窗口可视
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); //关闭窗口时退出程序
}
public void paint(Graphics g){ //绘制组件方法
Graphics2D g2=(Graphics2D)g; //得到2D图形
Dimension dim = this.getSize(); //得到组件尺寸
g2.setColor(Color.white); //设置绘制颜色为白色
g2.fillRect(0, 0, dim.width, dim.height); //填充整个组件
g2.setColor(Color.black); //设置绘制颜色
g2.drawLine(40,160,280,160); //绘制实线
g2.drawLine(40,160,40,40);
g2.drawString("0",30,165); //绘制字符串
g2.drawString("100",16,50);
g2.drawString("200",270,175);
float[] dash={5,5}; //短划线图案
BasicStroke bs = new BasicStroke(1,BasicStroke.CAP_BUTT,BasicStroke.JOIN_MITER, 10.0f,dash,0.0f); //实例化新画刷
g2.setStroke(bs); //设置新的画刷
g2.drawLine(40,160,100,120); //用新的画刷绘制虚线
- 2022-01-28 07:52:17下载
- 积分:1
-
VC++课程设计:工资管理系统源码+论文
VC++课程设计:工资管理系统源码+论文,完成日常工资的管理,如查询、修改、增加、删除以及存储等操作,迅速准确地完成各种工资数据的的统计和汇总工作,快速打印出工资报表等,大大提高了企业的管理效率。
工资管理系统是由基本信息管理、工资查询、工资管理、系统管理和帮助等几个功能模块组成,规划系统功能模块如下:
基本信息管理模块:主要包括员工录入、员工删除2部分。
工资查询模块:主要包括基本工资查询、浮动工资查询、加班/休假查询、总体查询4个部分。
工资管理模块:工资管理模块主要包括工资发放管理、基本工资管理、浮动工资管理3个部分。
系统管理模块:主要包括用户管理、修改密码、退出系统3个部分。
- 2022-09-28 02:30:06下载
- 积分:1