搜索资源列表
Functions
- Numerical Recipes一书中例子的源码所用到的函数集,William H. Press 和 Saul A. Teukolsky 所著-One example of the book Numerical Recipes source code used by the function sets, William H. Press and Saul A. Teukolsky book
ColorPicker
- ColorPicker是一个基于对话框的应用程序,它具有以下功能: 1. 色彩编辑功能 用户可以通过可以调整R、G、B的值来编辑颜色,亦可通过调整H、S、V的值来选取颜色。颜色编辑的结果会马上反馈到颜色面板和颜色预览框中。 2.RGB颜色空间和HSV颜色空间的转换 当改变RGB值,会得到相应的HSV值,并进行显示,反之亦然。 3.取色功能 取色功能包含“面板取色”和“屏幕取色”。面板取色就是用户可以在颜色面板中单击鼠标左键,选取目标点所表示的某种颜色。屏幕取色则是允许用户
liue
- 用窗函数法设计线性相位FIR低通滤波器。要求通带截止频率ωc=π/4,单位脉冲响应h(n)的长度N=23。绘出h(n)及其幅频响应特性曲线-Window function with linear phase FIR design a low pass filter. Required pass-band cutoff frequency ωc = π/4, unit impulse response h (n) of length N = 23. Plot h (n) and frequency
shiyan
- 实现客户机(CLIENT)类。定义字符型静态数据成员ServerName,保存其服务器名称;整型静态数据成员ClientNum,记录已定义的客户数量;定义静态函数ChangeServerName()改变服务器名称。在头文件client.h中定义类,在文件client.cpp中实现,在文件test.cpp 中测试这个类,观察相应的成员变量取值的变化情况。(需要给出main函数代码和运行结果) 完善Body类,将检测胖瘦的标准定义为静态数据成员并设计相应的静态成员函数。(最好给出main函数
ADC
- stm32驱动4X4键盘扫描,用于键盘扫描-/******************************************************************************* * File Name : KeyScan * Descr iption : Serial print out the corresponding key value *************************************************
npnqudong
- 此功能为实现pwm控制直流电机的正反转、调速,在驱动H桥式电路方面的c语言编程。-This function is to achieve the pwm control the positive DC motor, speed, drive the H-bridge circuit, c programming language.
LTE-Link-Simulation_15-0201
- 无线通信系统仿真:IT++分析与实例。LET仿真工程代码,主函数实现文件LTE.cpp,发送接收机头文件Tranceiver.h和实现文件Tranceiver.cpp,传输信道头文件TranChannel.h。-Wireless communication system simulation: IT++ analysis and examples. LET engineering simulation code, the main function implementation file LTE
youxi
- 此代码是需要用throb c作为开发工具为基础的俄罗斯方块游戏。因为调用了里面的图形函数头文件graphics.h-This code is needed throb c as a development tool based Tetris game. Because the graphics function calls inside the header file graphics.h
Survey
- 生成纵横向四阶方程,计算特征根,传递函数等,给出波特图及尼科尔斯图。- SURVEY is set up to make calculations based on the 12 x 12 Fmodel and 12 x 7 Gmodel produced by FLIGHT, with the generic business jet model trimmed for flight at V = 102 m/s and h = 3,050 m. The flags are set to ge
waterfill_block
- Block Diagonal Waterfilling 功率注水模块-function Optimal_precoder = waterfill_block(H, P,Num_BS_RFchains) Returns optimal covariance matrix and capacity for block diagonal channel H, where H(:,:,1) is first channel, H(:,:,2) is 2nd
C语言中scanf的使用
- 首先需要#include <stdio.h>int scanf( const char *format, ... );scanf()函数是格式化输入函数,它从标准输入设备(键盘) 读取输入的信息。第一个参数format为一个常量字符串,这个字符串中如果包含‘%’符号则使用后续参数进行匹配如:scanf("%d%d", &a, &b);(First, we need #include <stdio.h>int scanf (const c