-
24
说明: 给定四个数(1--13),判经过四则运算后能否得到结果24,若能,输出表达式。 (Given the number four (1- 13), after sub after four computing results can be 24, if the output expression.)
- 2008-01-03 22:19:45下载
- 积分:1
-
test
随机数的产生,枚举嵌套算法求解一元多次方程。按批量处理。(The generation of random Numbers, nested enumeration algorithm monadic equation according to the batch processing for many times)
- 2013-05-18 08:42:15下载
- 积分:1
-
机器人地盘
robomaster比赛,哨兵底盘部分代码。robomaster比赛,哨兵底盘部分代码。robomaster比赛,哨兵底盘部分代码。
- 2022-02-15 07:26:36下载
- 积分:1
-
RemoteOnData
使用RDP的通道Channel API进行文件/剪贴板/数据通信(File/Clipboard/Data communication through RDP channel API)
- 2015-02-14 23:49:38下载
- 积分:1
-
evvgc云台控制板开发资料
evvgc作为国外云台开源代码的先驱,你值得拥有。里边有完整的控制程序,包含电机的驱动方式,云台的初始配置,无刷云台的特殊pid控制。对于寻求云台开发的朋友不可错过,因为这资料真心难找。
- 2022-05-17 16:22:55下载
- 积分:1
-
mfchittest
opengl在mfc中的单文档多视图显示,适合初学者。可以实现旋转,平移和从不同坐标系观察。(opengl mfc in the multi-view single document, for beginners. Can be achieved as rotation, translation and from different coordinate system observation.)
- 2007-05-10 22:28:37下载
- 积分:1
-
Graph_all.c
All graph algorithms thats helps to understand the concepts
- 2014-09-05 05:45:53下载
- 积分:1
-
wpf滑动效果 实例源码
鼠标拖动时 控件滑动 截图: 核心代码:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows;using System.Windows.Controls;using System.Windows.Data;using System.Windows.Documents;using System.Windows.Input;using System.Windows.Media;using System.Windows.Media.Imaging;using System.Windows.Navigation;using System.Windows.Shapes;using System.Windows.Media.Animation;namespace FlashPrac2{ /// /// MainWindow.xaml 的交互逻辑 /// public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); } /// /// 完成缓冲效果 /// /// 起始位置 /// 目标位置 /// 加速加速度 /// 减速加速度 /// 持续时间 private void DoMove(DependencyProperty dp, double to, double ar, double dr, double duration) { DoubleAnimation doubleAnimation = new DoubleAnimation();//创建双精度动画对象 doubleAnimation.To = to;//设置动画的结束值 doubleAnimation.Duration = TimeSpan.FromSeconds(duration);//设置动画时间线长度 doubleAnimation.AccelerationRatio = ar;//动画加速 doubleAnimation.DecelerationRatio = dr;//动画减速 doubleAnimation.FillBehavior = FillBehavior.HoldEnd;//设置动画完成后执行的操作 grdTransfer.BeginAnimation(dp, doubleAnimation);//设置动画应用的属性并启动动画 } private double pressedX; /// /// 点击鼠标,记录鼠标单击的位置 /// /// /// private void grdTest_PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e) { ////获得鼠标点击的X坐标 pressedX = e.GetPosition(cvsGround).X; } ////鼠标释放时的操作 private void grdTest_PreviewMouseLeftButtonUp(object sender, MouseButtonEventArgs e) { double transferLeft = Convert.ToDouble(grdTransfer.GetValue(Canvas.LeftProperty)); //btn1.Content = transferLeft.ToString(); if (transferLeft > 0) { transferLeft = 0; } if (this.Width - transferLeft > cvsGround.Width) { transferLeft = this.Width - cvsGround.Width; } ////获得鼠标释放时的位置 double releasedX = e.GetPosition(cvsGround).X; ////获得距离间隔 double interval = releasedX - pressedX; pressedX = 0; ////计算出传送带要的目标位置 double to = transferLeft interval; ////移动 //btn1.Content = transferLeft.ToString() " " to.ToString(); // btn1.Content = transferLeft.ToString() " " to.ToString(); DoMove(Canvas.LeftProperty, to, 0.1, 0.5, 0.5); } }}
- 2014-06-24下载
- 积分:1
-
fuzzy_pid
模糊pid参数自整定 matlab仿真m文件(fuzzy-pid matlab )
- 2013-03-12 09:38:20下载
- 积分:1
-
pcd-lab.tar
parser program for compiler design
- 2015-02-13 00:00:51下载
- 积分:1