搜索资源列表

  1. 数据结构距阵运算

    0下载:
  2. 利用三元组完成距阵的基本运算,包括加法,减法,乘法.数据结构实习题目-using ternary Group completed the basic matrix operations, including addition, subtraction, multiplication. Internship topic data structure
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:23584
    • 提供者:陈大民
  1. zxh

    0下载:
  2. 在VC环境下实现稀疏矩阵的转置!这个程序是以C语言写的,而且用的是数据结构的三元组表示矩阵!-in VC environment under the sparse matrix switch home! This program is written in C language, but using the data structure of ternary group said Matrix!
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:905
    • 提供者:支新辉
  1. 稀疏矩阵的运算器

    1下载:
  2. 稀疏矩阵的运算器 [基本要求] 以“带行逻辑链接信息”的三元组顺序表表示稀疏矩阵,实现两 个矩 阵相加、相减、相乘的运算。稀疏矩阵的输入形式采用三元组表示, 而运算结果的矩阵则以通常 的阵列形式列出。 这是出自清华大学 严蔚敏 吴伟民 编著的数据结构题集(C语言版)的第136页的实习4 -sparse matrix operations for the [basic requirements] "
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:4948
    • 提供者:snow
  1. 用三元组表实现稀疏矩阵的转置运算

    0下载:
  2. 用三元组表实现稀疏矩阵的转置运算 一个阶数较大的矩阵中的非零元素个数S相对于矩阵元素的总个数t很小时,即非 零元素个数s占矩阵元素的总个数t的25%~30%时,称该矩阵为稀疏矩阵称. 由于稀疏矩阵中非零元素的分布没有任何规律,在存储非零元素时,必须保存该非 零元素所对应的行下标和列下标.这样,存储的每个稀疏矩阵中的非零元素都需要(行 下标,列下标,元素值)三个参量来唯一确定,将这种存储结构称为稀疏矩阵的三元组
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:2790
    • 提供者:snow
  1. 矩阵相加的算法

    0下载:
  2. 当稀疏矩阵A和B均以三元组表作为存储结构时,试写出矩阵相加的算法,其结果存放在三元组表C中。 解:这个算法有点繁,要考虑到两个稀疏矩阵的非零元素不是一一对应的,在建立新的三元组表C时,为了使三元组元素仍按行优先排列,所以每次插入的三元组不一定是A的,按照矩阵元素的行列去找A中的三元组,若有,则加入C,同时,这个元素如果在B中也有,则加上B的这个元素值,否则这个值就不变 如果A中没有,则找B,有则插入C,无则查找下一个矩阵元素。
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:2545
    • 提供者:snow
  1. ajks

    0下载:
  2. 许多现代浮点单元的一项主要体系结构功能,是能够将一个乘法与后面紧跟的加法作为单个运算执 行,且没有中间舍入误差。例如,Intel 的 Itanium 体系结构提供了一些指令,将三元运算 (a*b+c) 、(a*b-c) 和 (c-a*b) 中的每一个都组合为单个浮点指令(分别为 fma、fms 和 fnma)。这些单个 指令都比执行独立的乘法和加法指令快,并且因为没有中间乘法舍入,所以更为精确。该优化可以显 著提高那些含有多个交错乘法和
  3. 所属分类:界面编程

    • 发布日期:2008-10-13
    • 文件大小:6440
    • 提供者:jack
  1. sanyuan

    0下载:
  2. 三元一次方程组计算器——输入参数,参数间用“,”割开,即刻得到结果。-ternary linear equation group calculator -- input parameters, the parameters "," slit and receive immediate results.
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:2727
    • 提供者:田星
  1. fzyj

    0下载:
  2. 赋值语句,使用C++编写,能够实现对语句的翻译,采用三元式输出-assignment, the use of C prepared to achieve the right phrase translation, using ternary output
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:8805
    • 提供者:brisk
  1. PrtTView_demo

    0下载:
  2. This project is to show the tree I dreamed when I first met the ternary tree concept. When I came upon the ternary tree, I get awed! It s amazing that an idea so simplistic could be so strong and fast. But it had flaws..
  3. 所属分类:TreeView控件

    • 发布日期:2008-10-13
    • 文件大小:32291
    • 提供者:gaowen
  1. EX_4_1

    0下载:
  2. 编制一个算术表达式求值的程序 (1)以十字链表表示稀疏矩阵,实现两个矩阵相加,相减和相乘的运算。稀疏矩阵的输入形式采用三元组表示,而运算结果的矩阵则以通常的阵列形式列出。 (2)首先应输入矩阵的行数和列数,并判别给出的两个矩阵的行、列数对于所要求作的运算是否匹配。 (3)程序对三元组的输入顺序没有特定的要求,可以以任何的次序输入,程序会对其进行查找,插入到适合的位置上。 (4)在用三元组表示稀疏矩阵时,相加或相减所得结果
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:2045
    • 提供者:战天
  1. brainBp

    0下载:
  2. 本\"人工神经网络\"共有13个神经元构成,4个为输入神经元,1个为输 出神经元。也就是说,这个程序最多能处理一个四元关系(包含了二元, 三元)。-the "artificial neural network," a total of 13 neurons constitute, four input neurons, an output of the neurons. In other words,
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:49883
    • 提供者:李合
  1. wk1

    0下载:
  2. 三元阵的信号相位匹配法,结合相位匹配法的公式就能很好的理解其仿真原理-ternary array signal phase matching, phase matching with the formula can be very good understanding of its principles Simulation
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:877
    • 提供者:王凯
  1. sparseMatrix

    0下载:
  2. 实现用三元组表示的稀疏数组的输入、转置、相加、输出。可以直接输入三元组,转置和相加基于三元组进行,输出的结果也为三元组。-achieved using ternary group said the sparse array of input, transfer home, combining the output. 3 can directly import group, and add to home-based Group 3, t
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1016
    • 提供者:刘 正
  1. ternary

    0下载:
  2. An example of the ternary operation to compare a value range.
  3. 所属分类:Windows编程

    • 发布日期:2024-04-30
    • 文件大小:128000
    • 提供者:3x0sk3l3t0n
  1. face_recognition_LTPPTBSM

    0下载:
  2. 基于local ternary pattern feature 和 distance transform-based similarity metric 相结合的人脸方法识别技术研究-combining the local ternary pattern feature and distance transform-based similarity metric method for robust face recognition.
  3. 所属分类:matlab例程

    • 发布日期:2024-04-30
    • 文件大小:44032
    • 提供者:liu
  1. search-tree

    0下载:
  2. 中文三叉树字典(Ternary Tree),可以用于分词,自动提示,查询速率与Hash Table相当,支持动态添加。-Chinese trigeminal tree dictionary (Ternary Tree), can be used for word, auto tips, check rates and Hash Table equivalent support for dynamically added.
  3. 所属分类:Windows编程

    • 发布日期:2024-04-30
    • 文件大小:1052672
    • 提供者:jiangyu
  1. Ternary-Sequence-Based-OFDM-Frame-Synchro-in-WIFI

    0下载:
  2. In this paper, we present and analyze efficient fr a me synchronization and frequency offset compensation scheme with ternary sequences for an orthogonal frequency division multiplexing (OFDM) system in Rayleigh fading c
  3. 所属分类:编程文档

    • 发布日期:2024-04-30
    • 文件大小:1581056
    • 提供者:Joel
  1. A-Novel-Ternary--QAM

    0下载:
  2. Describes a new model of the ternary quadrature amplitude modulation. Extracted from IEEE.
  3. 所属分类:行业发展研究

    • 发布日期:2024-04-30
    • 文件大小:1937408
    • 提供者:kyogre123
  1. 8bit-ternary-multiplier

    0下载:
  2. 8 bit ternary multiplier using mux technique. Results of FPGA implementation.
  3. 所属分类:VHDL编程

    • 发布日期:2024-04-30
    • 文件大小:10240
    • 提供者:satish devrari
  1. Ternary-search

    0下载:
  2. 在递归模式下实现三元搜索!三元搜索遵循相同的二叉搜索思想,但将向量分为3个部分,两个索引:一个为左侧,一个为右侧,第三个搜索为中间!-implement a ternary search in recursivity mode. The ternary search follows the same idea of binary search, but splitting the vector into 3 parts, two ind
  3. 所属分类:C#编程

    • 发布日期:2024-04-30
    • 文件大小:1024
    • 提供者:jinping
« 12 3 4 5 6 7 »

源码中国 www.ymcn.org