搜索资源列表
C++程序设计语言实验三
- 实验三:C++编程入门 一、实验内容 1. 类模版。 2. 运算符重载。 3. 友元。 4. 继承。 二、实验题目 1, 设计一个类SavingsAccount,定义一个静态数据成员记录存款的年利率(rate),该类的每个成员都包含一个私有的数据成员balance,表示该成员当前的存款数额。提供一个成员函数CalMonthlyInterest(),用以计算月利息(用balance乘以rate再除以12),并将这个月利息加入balance中。提供一个静态成员函数ModifyRate(
svm_perf.tar.gz
- SVMstruct is a Support Vector Machine (SVM) algorithm for predicting multivariate or structured outputs. It performs supervised learning by approximating a mapping h: X --> Y using labeled training examples (x1,y1), ..., (xn,yn). Unlike regula
msd7828L
- MSTAR高清机顶盒芯片资料。集成DVB-Cdemodulator。-The MSD7828L is a highly integrated ASIC for STB (Set-Top Box) applications. It is configured with a DVB-C demodulator, a transport stream de-multiplexer with time-shifting capabilities and limited recording of an
h_brige_check_process
- H桥是电机驱动中的重要部件 在系统的调试中,H桥的调试是很重要的一环,这是长时间调试总结的,愿意和大家分享-H bridge motor driver is an important component in the system debugging, H Bridge Debugging is a very important aspect, which is summed up a long time debugging, and is willing to share
WSPD_NEW_K8M890_SIS671_RS690
- 该软件实现自动写入01到127(base 0)中(DDR2),根据参数决定是否比对所有的SPD数据(需要 数据文件) 运行环境: dos K8M890, SIS671, RS690 数据文件 数据文件编码: SM212NG08EAF.txt -> M212G08EA.txt ^^^^ ^ ^^^ ^^^^ 参数说明: -h 调用帮助(退出) -p 写入passcode,并验证一次 -cmp 读取并校验所有的SP
DT
- 实时接收VC++程序Debug和Release下的自定义调试输出,可以极大的方便程序的调试. 用法(以CTestMFCApp为例): 在TestMFCApp的stdafx.h中加入#include "dt_2005.h" 在.cpp需要输出调试信息的代码行加入 DT("hello,year d",2009) DW("This is a warning msg") DE("error") 用DT.exe来接收输出的信息 DT用来输出一般信息,
hzts
- 第一个循环是对矩阵的第一行进行的,第一次循环时除了第一个是1其他都是0,i=0,j=0时H[i + 1, j] =H[1, 0]=0,循环结束时, H[1, 0] =2,i=1,m=3;第二次循环时i=1,j=0,H[i + 1, j] =H[2, 0]=0,循环结束时,H[2, 0] =3,i=2,m=4 ……所以第一个循环相当于把第一行用2到N连续的自然数填充。同样的第二个循环是对最后一列用从N到2N-1的连续自然数进行填充,第三个是对最后一行从右到左用2N-1到3N-2的连续自然数进行填充
svm_perf
- SVMstruct is a Support Vector Machine (SVM) algorithm for predicting multivariate or structured outputs. It performs supervised learning by approximating a mapping h: X --> Y using labeled training examples (x1,y1), ..., (xn,yn). Unlike reg
bHxunhuan
- 通过编程设置字母H与h的循环闪烁,时候LED编程初学者用-Programmatically set the letter H and h of the cycle of blinking, LED programmer with time
Data
- 建立具有下列功能的类Date: a) 以多种格式输出日期,如 DDD YYYY MM/DD/YYYY June l4,1992 b) 用重载的构造函数初始化Date类的对象。初始化值是a)中格式的数据。 c) 构造函数用头文件time.h中的标准库函数读取系统的时间,把读取的时间赋给Date的数据成员。 -Established the following functional classes Date: a) the date output in
Luoc-su-thoi-gian
- Luoc su thoi gian Cuố n sách mà chúng tô i giớ i thiệ u vớ i các bạ n sau đ ay có tên là "Lư ợ c sử thờ i gian" (A Brief History of Time), mộ t cuố n sách tuyệ t diệ u,
jifangshoufei
- 机房收费管理系统 c语言程序设计 (1)输入功能:输入30名学生的学号、班级、姓名、上机起始时间。 (2)计算功能:计算每个下机学生的上机费用,每小时1元。 (上机费用=上机时间* 1.0/h ,不足一小时按一小时计算) (3)查询功能:按条件(班级、学号、姓名)显示学生的上机时间。 (4)机器使用情况的显示(显示方式不限但要一目了然)-The room charge management system c language programming (1) inpu
RK4
- 1.用四阶 Runge-Kutta 法求数值积分的函数为 RK4 2.此函数的入口参数为:系统维数 dimension,仿真时间 tspan 。 3.tspan 的格式为 [a:h:b] . 其中 a 表示起始时间,h 表示步长,b 表示终止时间。 4.仿真模型的状态方程、输出方程的系数矩阵以及系统初值均存放于文件 input information.txt 中。 5.仿真结果存放于文件 result.txt 中。 6.运行举例: 将 M 文件 RK4.m 和 inpu
Performance
- 用于测试运行时间的功能类,包括Performance.cpp和Performance.h文件,使用是直接包含即可-For the test run time function class, including Performance.cpp and Performance.h file, use directly contains can
linearlistastack
- LinearList.h是线性表抽象类的头文件; LinearListSqu.h是顺序结构实现的线性表; LinearListLink.h是链表实现的线性表; StackSqu.h是堆栈类头文件,其中使用了LinearListSqu类,StackLink.h是堆栈类头文件,其中使用了LinearListLink类; main函数测试办法是压入10个元素,依次弹出,将该动作重复百万次并统计时间。-LinearList.h linear form abstract class
shijian
- 程序执行时间的计算,比较简单,主要用到time.h这个头文件,适合插入某段程序计算其执行时间。-The procedure of how to calculate the executing time of a certain programme.
time.h
- 使用arduino去撰寫time.h,可以使用在控制時間觸發上,因此此樣板具利用價值!-Use arduino to write time.h, can be used to control the time-triggered, so this model has of value!
H-ui.admin.page_3.1.3
- H-ui.admin.page是用H-ui前端框架开发的轻量级网站后台管理模版,采用源生HTML语言,完全免费,简单灵活,兼容性好,让您快速搭建中小型网站后台。H-ui.Admin.page是单页面,没用到ifr a me,左侧菜单点击刷新页面,每次只能打开一个页面,相比ifr a me更简单,更方便操作。(H-ui.admin.page is a lightweight web site background management template developed with H-ui fr
h
- I know about you for which you can tell me do what I want to do whenever you had time
H.265 可用于 3G
- H.265 使用了 D2,D3,D4,MM 小波; BPDD位流编解码; 熵量化速率控制; 时间域三维仿真; 目标提取跟踪; 等技术。H.265 可用于 3G,HDTV 音视频编解码协议; H.265 使用了 D2,D3,D4,MM 小波; BPDD位流编解码; 熵量化速率控制; 时间域三维仿真; 目标提取跟踪。(H.265 uses D2, D3, D4, MM wavelets
