搜索结果
找到约 975 项符合
TA-F 的查询结果
单片机开发 本文所设计的系统是基于AT89C52单片机控制的简易RLC测试仪。为了充分利用单片机的运算和控制功能
本文所设计的系统是基于AT89C52单片机控制的简易RLC测试仪。为了充分利用单片机的运算和控制功能,方便的实现测量。把参数R、L、C转换成频率信号f,然后用单片机计数后再运算求出R、L、C的值,并送显示。 转换的原理分别是RC振荡电路和电容三点式振荡电路。为了比较准确的测试而频率的计数则是利用等精度数字频率计完成。然 ...
VC书籍 Pachetul contine o carte detaliata despre notiuni de baza in C++- tipuri de date,reprezentarea lor,f
Pachetul contine o carte detaliata despre notiuni de baza in C++- tipuri de date,reprezentarea lor,functii,concepte de OOP : clasa,obiect,mostenire, polimorfism, calse prietene, virtuale,pur virtuale.
matlab例程 In numerical analysis, the secant method is a root-finding algorithm that uses a succession of roots
In numerical analysis, the secant method is a root-finding algorithm that uses a succession of roots of secant lines to better approximate a root of a function f.
Delphi控件源码 Extension for LockBox for Delphi 7. This pack help for install the previous version of the LockBox f
Extension for LockBox for Delphi 7. This pack help for install the previous version of the LockBox for Delphi 2007.
数学计算 非线性方程求根的各种算法的比较
非线性方程求根的各种算法的比较,
//求非线性方程的根
//程序中共给出了以下几种方法求非线性方程的根
// (1)二分法 (2)牛顿法 (3)普通迭代法 (4)斯蒂芬森迭代法 (5)弦截法
//程序中用到的函数为: f(x)=x^3-x-1
//其中:(1)普通迭代法用的迭代函数为:x=(x+1)^(1/3)
// (2)斯蒂芬森迭代法用的迭代函数为:x=x^3-1 ...
单片机开发 MSP430定时器程序
MSP430定时器程序,定时器是最最常用而且有用的东西,特别TA的更为强大
嵌入式/单片机编程 为了实现让单片机显示阿拉伯数字的功能
为了实现让单片机显示阿拉伯数字的功能,让我们来实现最简单的数码管显示:
单个数码管的静态驱动。
AVR单片机的端口驱动能力高达20mA,可以直接驱动数码管。可以利用ATmeg48
单片机的PD端口刚好可以驱动数码管的8个段。
这个实验的目的是在单个数码管上依次显示0,1,2,3,4,5,6,7,8,9,A,
B,C,D,E,F共16 ...
matlab例程 针对一维,二维函数个g(x)
针对一维,二维函数个g(x),设计一个模糊系统f(x),使之一致的逼近定义在某区间上的连续函数并且满足所需精度
数据结构 I implement Dijkstra s Single Source Shortest Path, say SSP, algorithm for directed graphs using a s
I implement Dijkstra s Single Source Shortest Path, say SSP, algorithm for directed graphs using a simple data structure, say simple scheme, Fibonacci heaps, say F-heap scheme, and Pairing heaps, say P-heap scheme, and measure the relative performance of the three implementations.