-
C#计算器
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Runtime.InteropServices;
using System.IO;
namespace 计算器
{
///
/// Form1 的摘要说明。
///
public class Form1 : System.Windows.Forms.Form
{
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.Button button3;
private System.Windows.Forms.Button button4;
private System.Windows.Forms.Button button5;
private System.Windows.Forms.Button button6;
private System.Windows.Forms.Button button7;
private System.Windows.Forms.Button button8;
private System.Windows.Forms.Button button9;
private System.Windows.Forms.Button button11;
private System.Windows.For
- 2023-01-30 17:15:03下载
- 积分:1
-
SPHysics - SPH Free-surface Flow Solver
SPHysics is a platform of Smoothed Particle Hydrodynamics (SPH) codes
inspired by the formulation of Monaghan (1992) developed jointly by researchers
at the Johns Hopkins University (U.S.A.), the University of Vigo (Spain), the
University of Manchester (U.K.) and the University of Rome La Sapienza (Italy).
Developed over a number of years primarily to study free-surface flow phenomena
where Eulerian methods can be difficult to apply, such as waves, impact of
dam-breaks on off-shore structures.
- 2022-05-26 05:01:36下载
- 积分:1
-
booth multiplier Radix2 program
在这个项目中,booth乘法器是使用进位先行加法器设计的。booth多处理器在许多DSP应用中都有应用。
- 2022-02-04 20:12:54下载
- 积分:1
-
some example which explain kalman clearly,if you know little about kalman,it wil...
some example which explain kalman clearly,if you know little about kalman,it will be good choice.
- 2023-05-25 16:25:03下载
- 积分:1
-
竞争性市场均衡
Competitive Market Equilibrium
for Overlay Cognitive Radio
- 2022-04-10 20:44:46下载
- 积分:1
-
高斯赛德尔全主元逆矩阵
高斯赛德尔全主元逆矩阵-high Shisaideer all PCA inverse matrix
- 2022-01-28 06:45:30下载
- 积分:1
-
PHP QR Code QR编码库
概述
PHP QR 码是用于生成 QR 码,二维条形码的开放源码 (LGPL) 库。基于 libqrencode C 库,提供 API 创建条码图像 (PNG、 JPEG 多亏了 GD2) 的 QR 码。实施纯粹在 PHP 中,没有外部的依赖关系 (除了 GD2 如果需要的话)。
请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-04-26 16:04:21下载
- 积分:1
-
硫酸铜建浴设备控制系统
P3.4为 + 按钮 P3.5为 - 按钮 P3.7为光标按钮 * P3.0 搅拌机开关 P3.1 水泵快关 P3.2 报警解除 *具体控制要求: 1.按下 P3.4和P3.5不放 按下 P3.7 即可进入设置模式,再次按下退出设置模式 左边四位数码管最左边的开始闪烁,后面的四位数码管不属于此控制系统 * 按下加或减 有 A b C 三档 分别代表三个参数。 * 第一个参数(A):搅拌机运行时间 * 第二个参数(b):液位信号保持时间 * 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-11-06 07:25:03下载
- 积分:1
-
classical mathematical problem
经典的数学问题――百鸡问题的VC源码。-classical mathematical problem-- the 100 chicken VC source.
- 2022-04-12 21:59:53下载
- 积分:1
-
优化一个变量的函数
翻译 maninwest@Codeforge 作者:John D. Cook@CodeProject这里介绍一个算法,优化化带有一个变量的函数而不需要导数。通常,需要导数的方法稳定但是慢,不需要导数的方法快捷但是不稳定。这里实现的这个方法稳定且高效。这个方法开始是Richard Brent 实现的。 给定一个函数 f(x) 和一个区间l [a, b], 该方法是找出函数 f(x) 在 [a, b] 区间的最小值。该方法也可以用于找出最大值。要找出最大值,指向传递原函数的反函数。即 f(x) 的最大值出现在-f(x) 的最小值点。Brent 的方法比较稳定。也很容易使用。用户不需要提供导数函数。该方法为了稳定牺牲了一些效率,但是相比其他稳定的方法如黄金分割法,则更加快捷。使用函数这里给出的代码是一个 C++ 函数和使用此函数的示例项目。要在你自己的项目中使用,只需在 Brent.h.头文件中添加#include 即可。最小化函数的主要输入是一个模板化实参,一个函数对象实现目标函数最小化。目标函数必须使用签名 double operator()(double x)实现 Public 方法。例如,这里是一个用于计算函数 f(x) = -x exp(-x) 的函数对象类。 class foo
{
public:
double operator()(double x) {return -x*exp(-x);}
};代码需要函数对象而不是函数的主要原因是,需要在应用中优化的函数,除了函数实参外,还要依赖参数。函数对象可以有很多参数,它们在找到一个变量的结果函数最小值前固定。其他实参是函数需要找到最小值的区间的终点,偏差用于停止, 一个输出参数用
- 2022-01-26 15:15:42下载
- 积分:1