-
CorePlotExample
Sample application to show the use of a new open source framework for making graphs called Core Plot
- 2010-08-25 19:21:44下载
- 积分:1
-
SVDLIBC
1 SVD COMP-SVD分解例程。
2 svdCOMP-SVD分解程序。
3 采取MXN矩阵A,并将其分解成UDV,其中U、V是
4 左右正交变换矩阵,D是A
5 奇异值对角矩阵。(svdcomp - SVD decomposition routine.)
- 2020-12-21 10:49:08下载
- 积分:1
-
ExecuteProcessCommandLine
source for executing any external command line program from VC++
- 2009-09-28 03:39:43下载
- 积分:1
-
C# treeView节点动态删除和添加示例
C# treeView节点动态删除和添加示例,本源码演示了创建一个treeView父节点,创建了三个子节点,然后演示了将这3个子节点添加到父节点中,最后演示了使用Remove方法移除指定的TreeView节点项,添加节点和删除节点定义了两个按钮事件,用户通过单击按钮,激活事件,两个事件的编写方法如下:
private void Form1_Load(object sender, EventArgs e)
{
//建立一个父节点
TreeNode tn1 = treeView1.Nodes.Add("名称");
//建立3个子节点
TreeNode Ntn1 = new TreeNode("明日科技");
TreeNode Ntn2 = new TreeNode("C#编程词典");
TreeNode Ntn3 = new TreeNode("C#从基础到项目实战");
//将这3个子节点添加到父节点中
tn1.Nodes.Add(Ntn1);
tn1.Nodes.Add(Ntn2);
tn1.Nodes.Add(Ntn3);
}
private void button1_Click(object sender, EventArgs e)
{
//如果用户选择了“名称”证明没有选择要删除的子节点
if (treeView1.SelectedNode.Text == "名称")
{
MessageBox.Show("请选择要删除的子节点"); //弹出选择删除节点的提示
}
else
{
treeView1.Nodes.Remove(treeView1.SelectedNode);//使用Remove方法移除选择项
}
}
- 2023-07-29 02:55:08下载
- 积分:1
-
MSP430AFE253
这是用MSP430AFE253单片机开发的,用于测量电流,电压,功率,功率因素等的程序。精度高。开发工具是IAR_EW_MSP430_5502,全部是C语言开发。(This is MSP430AFE253 microcontroller development, the program used to measure current, voltage, power, power factor and the like. High accuracy. Development tools are IAR_EW_MSP430_5502, all C-language development.)
- 2020-11-13 17:39:42下载
- 积分:1
-
实现两个摄像头的同时调用
通过QT5和openCV实现了同时读取两个摄像头
- 2023-02-08 15:40:06下载
- 积分:1
-
通过输入欧拉角求旋转矩阵
通过输入欧拉角来求旋转矩阵,输入旋转矩阵可以反求欧拉角。可以用来做无人机的姿态学习。
- 2022-01-27 21:38:44下载
- 积分:1
-
romboot
(1)个人针对atmel提供的运行于CPU内13k空间的ram的romboot修改而成。
(2)提供了IRQ和FIQ的测试工作;
(3)提供了对外部sdram的数据总线和地址总线的测试工作
(3)提供了对spi dataflash和nor flash的访问操作
(4)实现了romboot在spi dataflash和nor flash中的升级
(5)因为受编译后文件不能超过13kbytes的限制,采用条件编译的方法控制各个功能((1) individuals provided for Atmel running on the CPU with 13k of ram space romboot modified form. (2) provides the IRQ and FIQ testing (3) provide for external SDRAM data bus and address bus of the test (3) provides a spi dataflash and visit nor flash operations (4) realize the romboot in spi dataflash and nor flash the upgrade (5) because of the compiled files should not exceed 13kbytes restrictions, conditions compiled using various functional control)
- 2008-03-10 21:12:28下载
- 积分:1
-
KLbianhuan
KL变换本征滤波技术在海洋地震资料处理中的应用(KL transform eigen filtering technology in marine seismic data processing application)
- 2012-06-25 11:19:40下载
- 积分:1
-
c
说明: 自动建立mif文件,各种类型文件自定义选择。(Automatic creation of MIF files, various types of files, custom selection.)
- 2017-09-05 15:15:55下载
- 积分:1