CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 其他小程序 搜索资源 - Matrix

搜索资源列表

  1. xiaoqufa

    0下载:
  2. 输入系数矩阵后,经过选择,交换,消去,三步骤后,再经过回代就可以了。-Input coefficient matrix after selection, exchange, elimination, three steps back for another generation of it.
  3. 所属分类:Other systems

    • 发布日期:2017-04-10
    • 文件大小:607
    • 提供者:gengfeng
  1. Matrix

    0下载:
  2. 使用c++实现矩阵的各种运算 ,一个C++初学者的好实例-implement some kinds of algorithm of Matric by C++ ,this is a good example for the beginner of c++
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:1492
    • 提供者:林仁富
  1. shuzijuzhen

    0下载:
  2. 数字矩阵,N的平方个数字,从一到N的平方,螺旋状打印-Figure matrix, N the square of a figure, from 1 to N of the square, spiral print
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-17
    • 文件大小:19191
    • 提供者:王晶
  1. try

    0下载:
  2. 紧束缚近似下算矩阵的对角化问题。fortran语言编写。-Tight-binding approximation operator matrix diagonalization problem. fortran language.
  3. 所属分类:Other systems

    • 发布日期:2014-06-27
    • 文件大小:2288
    • 提供者:mqq87
  1. 1123

    0下载:
  2. 16X16点阵屏,用2块hc164列驱动,16个8550行驱动,左移-16X16 dot matrix screen, with two out hc164-driven, 16 8550 line driver, the left
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:926
    • 提供者:duwanli
  1. key

    0下载:
  2. 用51单片机做的4*4矩阵键盘电路板,有串口接口,可供其他电路系统扩展用。-51 Singlechip to do with the 4* 4 matrix keyboard circuit board, there is the serial interface, for other expansion circuit system used.
  3. 所属分类:Other systems

    • 发布日期:2017-04-28
    • 文件大小:149276
    • 提供者:guoxin
  1. Doolittle

    0下载:
  2. Doolittle法求解任意阶的方程,运用系数矩阵的分解两个相关矩阵,再求解两个三角矩阵方程。-Doolittle method to solve the equations of arbitrary order, using both the decomposition of coefficient matrix correlation matrix, and then solving two triangular matrix equation.
  3. 所属分类:Other systems

    • 发布日期:2017-04-09
    • 文件大小:658793
    • 提供者:赌挖宝
  1. adda

    0下载:
  2. add elements of matrix
  3. 所属分类:Other systems

    • 发布日期:2017-04-05
    • 文件大小:3324
    • 提供者:sh_r
  1. mengying

    0下载:
  2. 输出1到25的5*5矩阵,要求输出的结果按一顺序排列.-Output 1-25 of the 5* 5 matrix, the result of requests output by one order.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-25
    • 文件大小:147971
    • 提供者:mengying
  1. anjian

    0下载:
  2. 4*4矩阵键盘按键显示按键值,并循环移位,-4* 4 Matrix keyboard button shows button value, and cyclic shift
  3. 所属分类:Other systems

    • 发布日期:2017-03-29
    • 文件大小:12862
    • 提供者:tanlin
  1. Mpi-Omp_MatInf_blkstp

    0下载:
  2. This a mutlicore and cluster(of single-core,multi-core systems) matrix inversion code. Which uses the MPI(Message Passing Interface) for communication across the compute nodes of cluster and using thread-API based OpenMP(Open Multi Processing) bet
  3. 所属分类:Other systems

    • 发布日期:2017-03-29
    • 文件大小:1594
    • 提供者:shraddha
  1. juzhentezhengzhi

    0下载:
  2. 关于矩阵特征值问题的的源代码,matlab编写的,值得收藏,欢迎大家踊跃下载,为中国的科研事业做贡献-On the matrix eigenvalue problem of the source code, matlab prepared and worthy of collection, enthusiastically welcomed the U.S. download, in order to make China' s contribution to the cause of s
  3. 所属分类:Other systems

    • 发布日期:2017-04-14
    • 文件大小:2942
    • 提供者:苏木亚
  1. text_change_Hex

    0下载:
  2. 将打开的.TXT文件转换成十六进制文件,以矩阵的新式输出,并保存为.txt文件。反向也可以。-Will be open. TXT files into hexadecimal files to the new output matrix, and save it as a. Txt file. Can also be reverse.
  3. 所属分类:Other systems

    • 发布日期:2017-05-08
    • 文件大小:1966261
    • 提供者:吴成刚
  1. CArray_YYF

    0下载:
  2. 利用类的操作符重载,和try语句。在数组越界是给予提示。提示包括数组名,越界的是上标还是下标。数组大小和数组名由构造函数生成。本人根据程序员考试题改写。经本人使用,无问题。-check whether matrix is out of memory or not
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-11
    • 文件大小:1001
    • 提供者:yyf
  1. LCS

    0下载:
  2. LCS问题就是求两个字符串最长公共子串的问题。解法就是用一个矩阵来记录两个字符串中所有位置的两个字符之间的匹配情况,若是匹配则为1,否则为0。然后求出对角线最长的1序列,其对应的位置就是最长匹配子串的位置。 最长递增子序列LCS的实现C源码!-LCS problem for two strings is the longest common sub-string problem. Solution is to use a matrix to record the location of two
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-30
    • 文件大小:159122
    • 提供者:郭子
  1. chenxu

    0下载:
  2. 用c实现进制转换,矩阵转置,用泰勒展开球sin函数-Implementation using c-band conversion, matrix transpose, using Taylor expansion sin function ball .....
  3. 所属分类:Other systems

    • 发布日期:2017-04-13
    • 文件大小:3312
    • 提供者:xia
  1. keiprogram

    0下载:
  2. AT89S52单片机 程序 矩阵键盘,数码管显示-Single-chip program AT89S52 matrix keyboard, digital display
  3. 所属分类:Other systems

    • 发布日期:2017-04-26
    • 文件大小:12638
    • 提供者:文一
  1. rotate

    0下载:
  2. 输入一个自然数N(2≤N≤9),要求输出如下的螺旋矩阵,即边长为N*N,元素取值为1至N*N,1在左上角,呈顺时针方向依次放置各元素。 N=3时,相应的矩阵中每个数字位置如下图所示: 1 2 3 8 9 4 7 6 5-Enter a natural number N (2 ≤ N ≤ 9), the requirements are as follows spiral output matrix, that is, edge length of N*
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:773
    • 提供者:QQQQQ
  1. dct

    0下载:
  2. Dct of 4*4 matrix of an image
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:950
    • 提供者:hassan dawood
  1. xishujuzhen

    0下载:
  2. 以“带行逻辑链接信息”的三元组表作为稀疏矩阵的存储结构;实现两个矩阵相加、相减、相乘运算;运算结果以阵列形式输出。-Sparse matrix computation
  3. 所属分类:Other systems

    • 发布日期:2017-04-05
    • 文件大小:1178
    • 提供者:Lounien
« 1 2 ... 13 14 15 16 17 1819 20 21 22 23 ... 50 »
搜珍网 www.dssz.com