Welcome![Sign In][Sign Up]
Location:
Search - dv source code

Search list

[DirextXaDVSnapSY

Description: 这是我以前做过的操作DV,获取视频及图像的源代码。使用DirectX开发。-done before the operation DV, access to video and images of the source code. Using DirectX development.
Platform: | Size: 48546 | Author: lj | Hits:

[DirextXaDVSnapSY

Description: 这是我以前做过的操作DV,获取视频及图像的源代码。使用DirectX开发。-done before the operation DV, access to video and images of the source code. Using DirectX development.
Platform: | Size: 48128 | Author: lj | Hits:

[assembly languageRM95_SOURCE

Description: 修改DV内存的汇编源代码,在95/98下使用,使用时需仔细.-DV memory compilation modify the source code used in the 95/98, to be used carefully.
Platform: | Size: 16384 | Author: 唐节浜 | Hits:

[Internet-NetworkDV

Description: 网络 DV 算法源代码。。。。比较简单。。。。就是模拟路由器分布式选路 -Network DV algorithm source code. . . . Relatively simple. . . . Distributed simulation of a router is routing
Platform: | Size: 6144 | Author: 彭泽环 | Hits:

[GPS developDV-HOP

Description: 对无线传感器网络定位技术经典算法在OMNET++仿真软件中用C++编程的源代码-Of wireless sensor network algorithm in the classic positioning technology OMNET simulation software using C programming source code
Platform: | Size: 7168 | Author: 李惠云 | Hits:

[3D GraphicDirect3D

Description: Bumpmapping is an advanced multitexture blending technique that can be used to render the appearance of rough, bumpy surfaces. The bump map itself is a texture that stores the perturbation data. Bumpmapping requires two textures, actually. One is an environment map, which contains the lights that you see in the scene. The other is the actual bumpmapping, which contain values (stored as du and dv) used to "bump" the environment maps texture coordinates. Some bumpmaps also contain luminance values to control the "shininess" of a particular texel. This sample makes use of common DirectX code (consisting of helper functions, etc.) that is shared with other samples on the DirectX SDK. All common headers and source code can be found in the following directory: DXSDK\Samples\C++\Common-Bumpmapping is an advanced multitexture blending technique that can be used to render the appearance of rough, bumpy surfaces. The bump map itself is a texture that stores the perturbation data. Bumpmapping requires two textures, actually. One is an environment map, which contains the lights that you see in the scene. The other is the actual bumpmapping, which contain values (stored as du and dv) used to
Platform: | Size: 651264 | Author: 王亚亮 | Hits:

[matlabDV_Hop

Description: 无线传感网络DV HOP定位算法仿真 matlab平台源代码-DV HOP wireless sensor network localization algorithm simulation platform source code matlab
Platform: | Size: 1024 | Author: 张雷 | Hits:

[matlabDV-Hop

Description: 无线传感器网络DV-Hop节点定位算法,基于Matlab的源程序。-Wireless sensor network node, DV-Hop localization algorithm, based on the Matlab source code.
Platform: | Size: 2048 | Author: gongyuevic | Hits:

[matlabDV-hop

Description: 一种基于DV-hop算法的源代码,仿真结果及图形,有助于对算法的进一步理解-DV-hop algorithm based on the source code, simulation results and graphics to help further understanding of the algorithm
Platform: | Size: 179200 | Author: 姜涛 | Hits:

[JSP/Javadv

Description: java source code for distance vector
Platform: | Size: 1024 | Author: yamuna | Hits:

[Compress-Decompress algrithmsdvsdk_encodedecode_demos_2_00_00_07

Description: TI s DV SDK encoder/decoder sample source code
Platform: | Size: 8558592 | Author: Kang | Hits:

[OtherDv-hop

Description: 此算法是无线传感器网络经典定位算法DV-Hop 的Matlab实现源代码-This algorithm is a wireless sensor network classic DV-Hop localization algorithm Matlab source code
Platform: | Size: 6144 | Author: 张涛 | Hits:

[Othermain

Description: dv 算法 源码,计算机网络编程模拟路由器-dv algorithm source code, the computer network programming analog router
Platform: | Size: 1024 | Author: 许怀军 | Hits:

[Internet-NetworkDV

Description: 网络 DV 算法源代码。。。。比较简单。。。。就是模拟路由器分布式选路-Network DV algorithm source code. . . . Relatively simple. . . . Distributed simulation of a router is routing
Platform: | Size: 6144 | Author: nceItu | Hits:

[matlabLocalization

Description: 各种无线定位算法的源代码 包括DV-Hop 算法 RSSI算法的,APIT等算法的代码,各种代码的仿真结果图。-A variety of wireless location algorithm source code, including DV-Hop algorithm RSSI algorithm, APIT algorithm code, a variety of code simulation results map.
Platform: | Size: 842752 | Author: | Hits:

[matlabdvhop

Description: DV-Hop的matlab源代码,可仿真,注释详细,功能完全。-DVhop source code
Platform: | Size: 1024 | Author: 陶启宏 | Hits:

[Mathimatics-Numerical algorithmsLDPC-PEG算法构造H矩阵

Description: LDPC-PEG算法构造H矩阵源码程序,matlab源码程序 clear all; clc; %输入编码参数,m:校验节点数目,n:变量节点数目(注意码率R不一定为1/2) %构造任意码率的LDPC校验矩阵 m=input('The number of check nodes:'); n=input('The number of variable nodes:'); h=zeros(m,n); %给定变量节点度分布序列 dv=0.38354*x+0.04237*x^2+0.57409*x^3 %为了得到更好的性能,此处的度分布序列采用密度进化理论选取 dv=inline('0.38354*x+0.04237*x.^2+0.57409*x.^3','x'); %计算每个度分布的节点数 indv=quadl(dv,0,1); a2=round(n*(0.38354/2/indv)); a3=round(n*(0.04273/3/indv)); ds(1:a2)=2; ds(a2+1:a3+a2)=3;(LDPC-PEG algorithm constructs H matrix source code program, matlab source code program clear all; CLC; % Input coding parameters, m: number of check nodes, n: number of variable nodes (note that bit rate R is not necessarily 1/2) % Constructing LDPC Check Matrix with Arbitrary Bit Rate M = input ('The number of check nodes:'); N = input ('The number of variable nodes:'); H = zeros (m, n); % Given variable nodal degree distribution sequence DV = 0.38354*x+0.04237*x^2+0.57409*x^3 % In order to get better performance, the density evolution theory is used to select the degree distribution sequence. DV = inline ('0.38354 * x + 0.04237 * X. ^ 2 + 0.57409 * X. ^ 3','x'); % Calculate the number of nodes per degree distribution INDV = quadl (dv, 0, 1); A2 = round (n* (0.38354/2/indv)); A3 = round (n* (0.04273/3/indv); DS (1:a2) =2; DS (a2 + 1: A3 + a2) = 3;)
Platform: | Size: 1024 | Author: MATLAB编程 | Hits:

CodeBus www.codebus.net