-
lyapunovexponentfordifferentialsystem
计算微分方程系统的Lyapunv exponent,在非线性动力学和有关混沌的研究中非常有用。(calculated differential system Lyapunv exponent, Nonlinear Dynamics and Chaos in the study very useful.)
- 2007-01-30 12:56:45下载
- 积分:1
-
Matlab-senior-notes(5)
Matlab高级讲义- SIMULINK仿真基础(Matlab senior notes- SIMULINK based simulation)
- 2011-12-24 21:15:08下载
- 积分:1
-
一个打印测试的预览框测试产品print
打印测试一个打印测试的预览框测试产品print一个打印测试的预览框测试产品print一个打印测试的预览框测试产品print
- 2022-03-19 22:26:30下载
- 积分:1
-
C# 递增运算/递减运算
C# 简单模拟递增运算、递减运算:
private void repeatButton1_Click(object sender, RoutedEventArgs e)
{//递增运算
Int32 MyNum = Convert.ToInt32(this.textBox1.Text);
this.label1.Content = "正在进行递增运算:";
this.textBox1.Text = ((MyNum + 1).ToString());
}
private void repeatButton2_Click(object sender, RoutedEventArgs e)
{//递减运算
Int32 MyNum = Convert.ToInt32(this.textBox1.Text);
this.label1.Content = "正在进行递减运算:";
this.textBox1.Text = ((MyNum - 1).ToString());
}
- 2022-02-26 15:45:23下载
- 积分:1
-
学生成绩管理
简单的学生成绩管理系统,包含学生登录,教师登录,学生个人信息,成绩查询,成绩排名以及删除,修改等常用的功能,适合初学者
- 2022-05-10 12:51:51下载
- 积分:1
-
easysort
很有意思的分类编程,程序很简单,很适合初期使用者(very interesting classification program, procedures very simple, suitable for beginning users)
- 2007-03-20 16:30:41下载
- 积分:1
-
threads
Nachos操作系统 修改线程的数据结构增加线程ID和用户ID(Add ThreadId and UserID for Nachos)
- 2014-03-08 20:47:41下载
- 积分:1
-
GradeSystem1
这是一个学生成绩管理系统,VC编程
这是一个学生成绩管理系统,VC编程(Student achievement management system)
- 2012-09-14 21:02:06下载
- 积分:1
-
Key
msp430f149按键程序,非常完整,带中断,输入,输出(msp430f149 key procedures)
- 2014-06-13 15:06:31下载
- 积分:1
-
通用数据库访问类
通用数据库访问Helper 支持Oracle、SqlServer、MySQL、Access数据库访问方便简洁
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
namespace PromotionDB.Interface
{
public interface IDataSource
{
bool Open();
int ExecuteNonQuery(string _ConStr);
DataTable ExecuteQuery(string _ConStr);
bool Close();
}
}
using System;
using System.Collections.Generic;
using System.Text;
using PromotionDB.Interface;
using MySql.Data.MySqlClient;
using System.Data;
namespace PromotionDB.Util.DataAccess
{
///
/// 连接MySql数据库
///
- 2022-03-24 18:01:59下载
- 积分:1