-
Nav.xcodeproj
The main tool you’ll use to build hierarchical applications is UINavigationController. UINavigationController is similar to UITabBarController in that it manages, (Navigation controller)
- 2012-10-23 16:37:50下载
- 积分:1
-
p115-abdelsadek
Distributed Index for Matching Multimedia Objects
using MapReduce
- 2018-04-15 14:34:44下载
- 积分:1
-
舵机控制
说明: 恩智浦智能车光电四轮组基于LPC54606单片机开发程序(Development Program of Photoelectric Four Wheel Set of Enzhipu Intelligent Vehicle Based on LPC54606 Single Chip Microcompute)
- 2020-06-18 15:00:01下载
- 积分:1
-
电机位置闭环控制(代码详细注释,F1寄存器版本)
STM32F1、F4电机PWM调速及PID速度闭环控制(PWM Speed Regulation and PID Speed Closed-loop Control of STM32F1 and F4 Motors)
- 2020-06-22 06:40:01下载
- 积分:1
-
liu_ks02
最大似然(ML)准则和最大后验概率(MAP)准则,多机电力系统仿真及其潮流计算,采用的是脉冲对消法。( Maximum Likelihood (ML) criteria and maximum a posteriori (MAP) criterion, Multi-machine power system simulation and flow calculation, It uses a pulse of consumer law.)
- 2017-05-15 11:27:23下载
- 积分:1
-
C++ IO程序
这是完整的C++进行IO操作的代码,主要是为了学习使用
- 2022-12-11 10:35:03下载
- 积分:1
-
dsp_yxp_3
说明: matlab开发函数,一些简单的例子和数字滤波器设计函数(matlab development function, some simple examples and digital filter design function)
- 2011-04-14 09:42:58下载
- 积分:1
-
UA-LDS
说明: The OPC Foundation has formally released the OPC Unified Architecture Local Discovery Server to the community.
- 2020-06-21 02:40:01下载
- 积分:1
-
MAX5419驱动程序
MAX5419驱动程序,C语言。可以直接用,不需要调整。动程序
- 2022-03-03 02:07:27下载
- 积分:1
-
TestSuite, for thinking in c++
//: TestSuite:Suite.cpp {0}
#include "Suite.h"
#include
#include
#include
using namespace std;
using namespace TestSuite;
void Suite::addtest(Test* t) throw(TestSuiteError)
{
// verify test is valid and has a stream:
if (t == 0)
{
throw TestSuiteError("Null test int Suite::addtest");
}
else if (osptr != NULL && !t->get_stream())
{
t->set_stream(osptr);
}
tests.push_back(t);
t->reset();
}
void Suite::addsuite(const Suite& s)
{
for (size_t i = 0; i < s.tests.size(); ++i)
&nb
- 2022-04-11 18:54:53下载
- 积分:1