联合开发网   搜索   要求与建议
                登陆    注册
排序按匹配   按投票   按下载次数   按上传日期
按分类查找Windows编程(53) 数据结构(42) 单片机开发(40) 其他(24) 数学计算(24) 数值算法/人工智能(23) 图形图像处理(19) 波变换(15) 其他小程序(13) 人工智能/神经网络/深度学习(13) 游戏(11) 界面编程(10) OpenGL(8) 嵌入式/单片机/硬件编程(8) 软件设计/软件工程(8) 网络编程(7) matlab编程(7) 模式识别(视觉/语音等)(6) VC书籍(5) 模拟服务器(5) 系统编程(4) 编译器/解释器(4) 教育系统应用(4) 绘图程序(4) 数据库编程(3) 多媒体编程(3) GDI/图象编程(3) 图形图象(3) mpeg/mp3(3) 数据库系统(3) C#编程(3) 视频捕捉采集剪辑(3) 文件操作(3) DSP编程(3) 游戏引擎(3) VHDL/FPGA/Verilog(3) 网络编程(2) 通讯编程(2) 语音合成(2) 文件格式(2) 对话框与窗口(2) FlashMX/Flex源码(2) 书籍源码(2) WEB开发(2) 串口编程(2) 操作系统开发(2) 处理器开发(2) 3D图形编程(2) 软件工程(2) 超算/并行计算(2) .net编程(2) 输入法编程(1) 通讯编程(1) 驱动编程(1) Linux/Unix编程(1) 系统/网络安全(1) 杀毒(1) 压缩解压(1) 加密解密(1) 多国语言处理(1) Java编程(1) 汇编语言(1) Ftp客户端(1) 音频处理(1) 组合框控件(1) 编辑框(1) 菜单(1) 工具条(1) CA认证(1) 通讯编程文档(1) 进程与线程(1) 语音压缩(1) 破解(1) 分形几何(1) 金融证券系统(1) 企业管理(1) 其他行业(1) 医药行业(1) SQL Server(1) GIS/地图编程(1) 其他书籍(1) 棋牌游戏(1) 其他游戏(1) Windows CE(1) 酒店行业(1) STL(1) GPS编程(1) 能源行业(电力石油煤炭)(1) OpenCV(1) 
按平台查找All Visual C++(461) 

[matlab编程] reverseArray_multiblock

反向阵列(multiblock): 给定指针d_a中的输入数组{a0,a1,...,an-1},将反向数组{an-1,an-2,...,a0}存储在指针d_b中 A: 从“reverseArray_multiblock”模板开始 B:多个256线程块启动,要颠倒大小为N,N / 256块的数组 第1部分:计算要启动的块数 第2部分:实现内核reverseArrayBlock 请注意,现在您必须同时进行计算 块内的相反位置 反向偏移到块的开始
Reverse array (multiblock): Given the pointer d_a in the input array {a0, A1,..., an-1}, the reverse array {an-1, An-2,..., a0} stored in the pointer d_b A: starts with the "reverseArray_multiblock" template B: more than 256 thread block start, to reverse the size of N, N / 256 block array The first part: the number of calculation to start The second part: implementation of kernel reverseArrayBlock Attention, now you must calculate at the same time The reverse position in a block Reverse offset to block start (2017-06-24, Visual C++, 6KB, 下载1次)

http://www.pudn.com/Download/item/id/1498259201733503.html

[Windows编程] reverseArray_singleblock

反向阵列(单块)-- 给定指针d_a中的输入数组{a0,a1,...,an-1},将反向数组{an-1,an-2,...,a0}存储在指针d_b中 A: 从“reverseArray_singleblock”模板开始 B: 只有一个线程块启动,以反转一个大小的数组 N = numThreads = 256个元素 C: 第1部分(共1个):所有你需要做的是实现内核的“reverseArrayBlock()” D:每个线程将单个元件移动到相反的位置, 从d_a指标读取输入,在d_b指标中将输出存储在相反的位置
Reverse array (single block) - the input array {a0, A1,..., an-1} in the given pointer d_a, the reverse array {an-1, An-2,..., a0}, stored in the pointer d_b A: starts with the "reverseArray_singleblock" template B: has only one thread block to start to reverse an array of sizes N = numThreads = 256 elements C: first parts (1 altogether): all you need to do is implement the kernel's reverseArrayBlock ()" D: each thread moves a single element in the opposite position, reads input from the d_a index, and outputs the output in the opposite position in the d_b index (2017-06-24, Visual C++, 6KB, 下载1次)

http://www.pudn.com/Download/item/id/1498258738869451.html

[游戏] monkey-eat-ect

本题目中,猴子每天都吃当前桃子的一半且再多吃一个,假设第一天开始时,即摘的桃子总数有a0只桃子,第一天吃过之后剩下a1只桃子,第二天吃过之后剩下a2只,. . .,第9天吃过之后剩下a9只,第10天吃过之后剩下a10只,在a0,a1, a2,. . .,a1 0中,只有a10= 1是知道的,现要求a0,而我们可以看出,a0,a1,a2,. . .,a10之间存在一个简单的关系: 也就是:ai= 2 * ( ai + 1), 其中i=10,9,8,7,6,...,1,0 。
本题目中,猴子每天都吃当前桃子的一半且再多吃一个,假设第一天开始时,即摘的桃子总数有a0只桃子,第一天吃过之后剩下a1只桃子,第二天吃过之后剩下a2只,. . .,第9天吃过之后剩下a9只,第10天吃过之后剩下a10只,在a0,a1, a2,. . .,a1 0中,只有a10= 1是知道的,现要求a0,而我们可以看出,a0,a1,a2,. . .,a10之间存在一个简单的关系: 也就是:ai= 2* ( ai+ 1), 其中i=10,9,8,7,6,...,1,0 。 (2014-07-02, Visual C++, 517KB, 下载1次)

http://www.pudn.com/Download/item/id/2579783.html

[FlashMX/Flex源码] lnk78f1845_a0_test

directive flash file
directive flash file (2012-12-17, Visual C++, 2KB, 下载2次)

http://www.pudn.com/Download/item/id/2086870.html

[单片机开发] MSP430_cahoshengbo(TA0PCCT0B)

MSP430F149通过定时器A0捕获方式B进行超声波测距
The MSP430F149 by the the timer A0 capture mode B ultrasonic ranging (2012-09-12, Visual C++, 40KB, 下载10次)

http://www.pudn.com/Download/item/id/1990924.html

[单片机开发] LCD1602

本示例程序主要测试LCD1602的功能。 数据IO为A0-A7 E为B5 RS为B6 RS为B6 RW为B7
This sample program to test the functionality of the LCD1602. Data IO A0-A7 E is B5, RS is B6, RS is B6, RW, B7, (2012-05-31, Visual C++, 134KB, 下载3次)

http://www.pudn.com/Download/item/id/1896889.html

[数据结构] poly

一元多项式A = anxn + … + a1x + a0, B = bnxn + … + b1x + b0,根据运算符+、-、*,分别计算A + B、A - B、A * B。
A polynomial A = anxn+ ...+ a1x+ a0, B = bnxn+ ...+ b1x+ b0+ operator,-,*, respectively, to calculate the A,+ B, A- B, A* B. (2012-05-20, Visual C++, 1KB, 下载2次)

http://www.pudn.com/Download/item/id/1877495.html

[嵌入式/单片机/硬件编程] AO_dll

基于DLL的研华采集卡1710 A0模拟量输出程序,VC6下测试通过
-Based on dll advantech 1711 A0 output program, VC6 under test. (2012-04-12, Visual C++, 74KB, 下载8次)

http://www.pudn.com/Download/item/id/1826350.html

[数据结构] 2010011179_e6

学生成绩管理系统 数据结构二叉树实现。C++编程语言
the manage of the student s grade. (2012-03-17, Visual C++, 935KB, 下载10次)

http://www.pudn.com/Download/item/id/1796842.html

[单片机开发] AD-transmit-display

AD转换并显示 通过采集A0口数据并显示在数码管上
AD transmit display (2011-05-29, Visual C++, 1KB, 下载2次)

http://www.pudn.com/Download/item/id/1551214.html

[数据结构] Polynomial

利用线性表实现一个一元多项式Polynomial f(x) = a0 + a1x + a2x2 + a3x3 + … + anxn
The realization of a linear form of Multinomial Polynomial f (x) = a0+ a1x+ a2x2+ a3x3+ ...+ anxn (2010-08-19, Visual C++, 974KB, 下载3次)

http://www.pudn.com/Download/item/id/1273473.html

[数值算法/人工智能] suanshi

能帮你算出给的N次的X多项式之和,并输入相应的系数a0,a1,a2....an。式子形为:a0+a1*x+a2*x1+a3*x2+...+a(n+1)*xn=sum
Can help you figure out X to the N times and polynomials, and enter the corresponding coefficients a0, a1, a2 .... an. Formula of the form: a0+ a1* x+ a2* x1+ a3* x2+...+ a (n+1)* xn = sum (2010-07-22, Visual C++, 131KB, 下载2次)

http://www.pudn.com/Download/item/id/1248394.html

[Windows编程] E6_1_5_3

读.DAT文件写入TXT 并通过柱状图显示,仅供参考
vc (2010-06-04, Visual C++, 1978KB, 下载3次)

http://www.pudn.com/Download/item/id/1201623.html

[其他] e6

very important subject in c++ inheritance...
very important subject in c++ inheritance... (2010-05-02, Visual C++, 6KB, 下载1次)

http://www.pudn.com/Download/item/id/1152636.html

[数学计算] math

矩阵运算:求逆、转置、相乘等,然后通过矩阵运算求多项式纠正的值,多项式如:X=a0+a1*x+a2*y+a3*x*x+a4*x*y+a5*y*y Y=b0+b1*x+b2*y+b3*x*x+b4*x*y+b5*y*y
Matrix operations: inversion, transpose, multiply, etc., and then through the matrix for computing the value of correct polynomial, polynomials, such as: X = a0+ a1* x+ a2* y+ a3* x* x+ a4* x* y+ a5* y* y Y = b0+ b1* x+ b2* y+ b3* x* x+ b4* x* y+ b5* y* y (2009-06-10, Visual C++, 2KB, 下载12次)

http://www.pudn.com/Download/item/id/802010.html

[数学计算] FFT

使用FFT实现的两个多项式相乘的算法。 输入文件: 第一行为(n-1) 第二行为第一个多项式系数序列 第三行为第二个多项式系数序列 系数序列的格式为:an,an-1,an-2 ,…, a1,a0 输出文件:result5.txt 格式为结果多项式的系数序列。 序列格式为:an,an-1,an-2 ,…, a1,a0(此n与输入中的n不同)
Implementation of both the use of FFT polynomial multiplication algorithms. Input file: the first act (n-1) the second act of the first polynomial coefficient sequence of the third act of the second polynomial coefficient sequence coefficient sequence format: an, an-1, an-2, ..., a1, a0 output file: result5.txt format for the results of polynomial coefficient sequence. Sequence format: an, an-1, an-2, ..., a1, a0 (the n with the input of the n different) (2009-03-15, Visual C++, 2KB, 下载34次)

http://www.pudn.com/Download/item/id/674180.html

[单片机开发] SpeechClock

结合"61板"的三个按键完成带有语音播报功能的电子钟:、KEY1--按一下播放年、月、日,再按一下播放时、分 (I/O口A0) // 连续按3s,则进入调整状态 调整状态下调整内容的切换 // 2、KEY2--年、月、日、时、分的增加(I/O口A0) // 3、KEY3--年、月、日、时、分的减少(I/O口A0)
a speechclock can play the time by speech, controlled by three keys (2009-03-13, Visual C++, 294KB, 下载2次)

http://www.pudn.com/Download/item/id/672516.html

[单片机开发] a0

利用定时器中断,每隔一秒,循环点亮LED灯。
Use timer interrupt every second, recycling lit LED lights. (2008-10-16, Visual C++, 6KB, 下载9次)

http://www.pudn.com/Download/item/id/561790.html

[数学计算] dom

对于给定的n 个整数a0, a1,., an-1 组成的序列,计算相应的亲兄弟元素位置序列。
For a given n integers a0, a1,., An-1, composed of sequences, calculation of the corresponding elements of the location of sequence brothers. (2007-11-13, Visual C++, 1KB, 下载4次)

http://www.pudn.com/Download/item/id/360016.html

[数学计算] LeastSquarFit

用最小二乘法拟合曲线y=a0+a1*x+a2*x^2+a3*x^3+...+an*x^n 的vc源码
using the method of least squares fitting curve y = a0 a1 a2* x* x* a3 ^ 2 x ^ 3 ... an* x ^ n vc FO (2007-06-01, Visual C++, 2KB, 下载96次)

http://www.pudn.com/Download/item/id/291042.html
总计:461