-
21
说明: 用C语言编写多元线性回归方程,写得不好的地方请指教!(Using C language multiple linear regression equation, where poorly written, please advice!)
- 2010-06-06 17:04:50下载
- 积分:1
-
C# 水晶报表CrystalReport导出各类型文件的例子
C# 水晶报表导出各类型文件的例子,将水晶报表数据导出为Word文件、Excel文件、HTML文件、PDF文件,并获取水晶报表的数据库连接项,设置CrystalReport水晶报表的数据库登录选项等。相关的代码片段:
private void button7_Click(object sender, EventArgs e)
{//将水晶报表数据导出为HTML文件
var MyFileName = "MyHTMLFile.htm";
var MyExportOptions = new ExportOptions();
var MyHtml32FormatOptions = new HTMLFormatOptions();
MyExportOptions.ExportFormatType = ExportFormatType.HTML32;
MyHtml32FormatOptions.HTMLBaseFolderName = "Html32Folder";
MyHtml32FormatOptions.HTMLFileName = MyFileName;
MyHtml32FormatOptions.HTMLEnableSeparatedPages = false;
MyHtml32FormatOptions.HTMLHasPageNavigator = false;
MyExportOptions.FormatOptions = MyHtml32FormatOptions;
this.CrystalReport11.Export(MyExportOptions);
MessageBox.Show("成功导出文件:" + MyFileName, "信息提示", MessageBoxButtons.OK);
}
private void button8_Click(object sender, EventArgs e)
{//将水晶报表数据导出为PDF文件
var MyFileName = "MyPDFFile.pdf";
var MyExportOptions = new ExportOptions
- 2022-04-11 03:03:59下载
- 积分:1
-
lefdfdf
编译原理课件,学习资料,关于编译院里的情况啊(Learning materials)
- 2014-06-05 18:23:17下载
- 积分:1
-
CRCendat2.2
海德汉ENDAT2.2协议,CRC校验C代码,调试通过,绝对可用(CRC FOR endat2.2)
- 2010-08-11 18:13:23下载
- 积分:1
-
qrs
Detection of QRS wave of more detailed procedures, including the starting point of QRS wave, peak detection.
- 2015-04-02 05:18:48下载
- 积分:1
-
stm32飞控
很不错的飞控
float q0 = 1, q1 = 0, q2 = 0, q3 = 0; // quaternion elements representing the estimated orientation
float exInt = 0, eyInt = 0, ezInt = 0; // scaled integral error
void IMUupdate(T_int16_xyz *gyr, T_int16_xyz *acc, T_float_angle *angle)
{
float ax = acc->X,ay = acc->Y,az = acc->Z;
float gx = gyr->X,gy = gyr->Y,gz = gyr->Z;
float norm;
// float hx, hy, hz, bx, bz;
float vx, vy, vz;// wx, wy, wz;
float ex, ey, ez;
// ???????????
float q0q0 = q0*q0;
float q0q1 = q0*q1;
float q0q2 = q0*q2;
// float q0q3 = q0*q3;
float q1q1 = q1*q1;
// float q1q2 = q1*q2;
float q1q3 = q1*q3;
float q2q2 = q2*q2;
float q2q3 = q2*q3;
float q3q3 = q3*q3;
if(ax*ay*az==0)
- 2022-02-28 17:16:50下载
- 积分:1
-
基于c语言的菜单程序设计
C语言初级程序设计课程大作业,具有管理员功能点菜功能等菜单管理系统的入门设计。点菜功能计价功能,菜单检索,菜单计价后台的管理员菜单数据管理等功能。
- 2022-03-19 10:30:37下载
- 积分:1
-
无线传感器网络
1.拿到板子后,肯定是要测试下通信功能,默认代码里面有程序的。
只要上电就可以测试2个板子相互发送数据测试。视频在网页里面就可以看到。
2.学习从 1 ZigBee简介和学习方法.pdf 开始 和 2.Zigbee开发平台的构建.pdf
3.认真学习开发 从 zigbee开发板代码及其教程1.基础篇-CC2530实验代码教程1、CC2530 流水灯实验 开始
每个代码都有相应的PDF讲解。
4.下载程序时,要复位仿真器。
- 2022-06-16 21:51:21下载
- 积分:1
-
csdp6.1.0winp4
一个求解半正定规划的数值算法包,包括 C 语言实现的源代码和 MATLAB 的调用接口。这是目前项目发布的最新版本 6.1.0。(Copyright 1997-2010, Brian Borchers. This copy of CSDP is made
available under the Common Public License. See LICENSE for the
details of the CPL.
CSDP is a software package for solving semidefinite programming
problems. The algorithm is a predictor-corrector version of the
primal-dual barrier method of Helmberg, Rendl, Vanderbei, and
Wolkowicz.
This file includes binary code for SDP for Windows.
doc documentation.
matlab MATLAB/Octave routines for interfacing to CSDP.
bin The binary code.
Contact/Support:
If you are having trouble running the code, see the doc directory
first. The project s website can be found at
https://projects.coin-or.org/Csdp/
The project s maintainer can be reached by email at borchers@nmt.edu. Please
email bug reports and feature requests.
)
- 2010-07-20 14:23:52下载
- 积分:1
-
简单循迹小车程序
资源描述一个电动小车整体的运行性能,取决于三个模块,首先取决于它的电源模 块和电机驱动模块。其次取决于单片机最小系统和软件编程。电源模块是为整 个系统提供动力支持的部分。电机驱动模块驱动小车轮子转动,使小车行进。 单片机最小系统是单片机稳定运行,为是程序运行的保障。软件编程是整个智 能车最关键的部分,主要包括红外解码和电机控制。
- 2023-01-07 11:50:03下载
- 积分:1