CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 WEB源码 搜索资源 - matrix class

搜索资源列表

  1. Jama-1.0.1

    0下载:
  2. Jama includes matrix operator class... and linear Algebra... it s cool-Jama includes matrix operator class... and linear Algebra... it s cool
  3. 所属分类:JSP源码/Java

    • 发布日期:2008-10-13
    • 文件大小:110.75kb
    • 提供者:陳大慶
  1. ActionScript编程实例

    1下载:
  2. Chapter 2: Getting Started Hello World Hello World Enhanced A simple "Hello World" application that shows the basics of how to use an Actionscr ipt 3.0 class in an application. The Enhanced version adds a name-checking feature. These exam
  3. 所属分类:FlashMX源码

  1. Matrix

    0下载:
  2. 设计一个矩阵,其中包括能够反映矩阵特征的属性、操作行为以及各种运算,还有一个测试类,测试矩阵功能-The design of a matrix, including to reflect the properties of the matrix characteristics, operating behavior as well as a variety of operations, as well as a test class, test matrix function
  3. 所属分类:Java Develop

    • 发布日期:2017-11-09
    • 文件大小:3.95kb
    • 提供者:姜淼
  1. flexible

    0下载:
  2. 可重用的向量/矩阵类代码,这是一个灵活的向量/矩阵类代码,其边界可以任意设定。--Class code of vector/Matrix which may be reuseful, it is a flexible vector/matrix class code, and its border may be setted freely.
  3. 所属分类:Java Develop

    • 发布日期:2017-11-09
    • 文件大小:30.41kb
    • 提供者:站长
  1. Matrix

    0下载:
  2. Matrix类。该类包括矩阵行列数变量int rows和int cols,矩阵数据数组double data[][],构造方法Matrix()、Matrix(int rows,int cols)、Matrix(int rows,int cols,double data[][]),获取某元素值的方法getData(int row,int col),设置某元素值的方法setData(int row,int col,double value),计算两个矩阵的乘积的方法multiply(Matrix m
  3. 所属分类:Java Develop

    • 发布日期:2017-04-07
    • 文件大小:1.46kb
    • 提供者:艾枫
  1. ZXing-1.5

    1下载:
  2. ZXing是一个Java类库用于解析多种格式的1D/2D条形码。目标是能够对QR编码、Data Matrix、UPC的1D条形码进行解码。 其提供了多种平台下的客户端包括:J2ME、J2SE和Android。 -ZXing is a Java class library for parsing multi-format 1D/2D barcode. Goal is to be able to QR codes, Data Matrix, UPC of 1D bar code decodin
  3. 所属分类:Java Develop

    • 发布日期:2017-06-22
    • 文件大小:41.27mb
    • 提供者:lyswy
  1. Matrix111

    0下载:
  2. 一些JAVA的矩阵运算方法 包括矩阵相乘 求逆 转置 等 都写入一个类里面 可以直接调用-The matrix operations of some JAVA methods include matrix multiplication, are all set to write seeking reversal of a class which can directly call
  3. 所属分类:Java Develop

    • 发布日期:2017-03-30
    • 文件大小:2.39kb
    • 提供者:liuting
  1. MagicMatrix

    0下载:
  2. 数字矩阵,上课学习用的。比较有意思的小程序-Digital Matrix, class learning purposes. Small program more interesting
  3. 所属分类:Java Develop

    • 发布日期:2017-04-11
    • 文件大小:809byte
    • 提供者:blue
  1. 1

    0下载:
  2. 创建一个整型5*5矩阵,题目中包含了两个类。矩阵类包含input和output两个方法。-Create an integer 5* 5 matrix, the title contains two classes. Matrix class contains input and output of two methods.
  3. 所属分类:Java Develop

    • 发布日期:2017-04-13
    • 文件大小:2.34kb
    • 提供者:沈东燕
  1. java-

    0下载:
  2. (1) 设计和编写代表矩阵的Matrix类。该类包括矩阵行列数变量int rows和int cols,矩阵数据数组double data[][],构造方法Matrix()、Matrix(int rows,int cols)、Matrix(int rows,int cols,double data[][]),获取某元素值的方法getData(int row,int col),设置某元素值的方法setData(int row,int col,double value),计算两个矩阵的乘积的方法mul
  3. 所属分类:JavaScript

    • 发布日期:2017-04-05
    • 文件大小:52.71kb
    • 提供者:王晓菲
  1. mofang

    0下载:
  2. Java编写的网页版魔方游戏,编译后生成.class文件,然后用HTML去调用,不过运行时候需要你的浏览器安装有运行Class的插件。Java源代码实现部分,比较有意思,也具参考性。像坐标控制、旋转矩阵、定时器、生成图像、数据初始化、矩阵乘法、坐标旋转、判断是否是顺时针方向排列、鼠标按下、放开时的动作等,都可在本源码中得以体现。-Written in Java web game cube version, compiler generated. Class files, then use HTM
  3. 所属分类:Java Develop

    • 发布日期:2017-04-01
    • 文件大小:8kb
    • 提供者:eric
  1. matrix

    0下载:
  2. 矩阵操作小程序,用于练习数组及其简单变换。包含源程序和class中间码文件。-Matrix operation small program for practicing an array of simple transformations. Intermediate code that contains the source and class files.
  3. 所属分类:Java Develop

    • 发布日期:2017-04-09
    • 文件大小:3.27kb
    • 提供者:JasonHe
  1. Matrix

    0下载:
  2. 个人原创代码:编写Java Application程序的方法,声明一个矩阵类Matrix,成员变量是一个二维数组,设数组元素类型为int,请设计方法: (1)构造方法: Matrix() //构造一个10X10个元素的矩阵,没有数据 Matrix(int n,int m) //构造一个nXm个元素的矩阵,数据由随机数产生 Matrix(int table[][]) //以一个整型的二维数组构造一个矩阵 要求使用 this (2) 实例方法: public void
  3. 所属分类:Java Develop

    • 发布日期:2017-03-29
    • 文件大小:1.31kb
    • 提供者:李瑞
  1. GradientShaperActivity

    0下载:
  2. GradientShaper Matrix 功能展示-/** * The Matrix class holds a 3x3 matrix for transforming coordinates. * Matrix does not have a constructor, so it must be explicitly initialized * using either reset()- to construct an identity matrix, or one of the
  3. 所属分类:Java Develop

    • 发布日期:2017-04-04
    • 文件大小:52.2kb
    • 提供者:zhang
  1. class

    0下载:
  2. /* * 题目:如果把明文字母按一定顺序排列成矩阵形式,用另一种顺序选择相应的列输出得到密文,如用“china”为秘钥,对”this is * a book mark“排成矩阵如下: * t h i s i * s a b o o * k m a r k */ -/** Topic: If the plaintext letters arranged in a matrix form according to a certain order, in an
  3. 所属分类:Applet

    • 发布日期:2017-04-06
    • 文件大小:6.29kb
    • 提供者:张志
  1. Matrix

    0下载:
  2. 创建一个矩阵类,完成矩阵的输入、输出、查找最大值等功能-Create a matrix class, completed matrix of input, output, find the maximum value function
  3. 所属分类:JavaScript

    • 发布日期:2017-04-10
    • 文件大小:956byte
    • 提供者:
  1. juzhen

    0下载:
  2. 用面向对象的方式来实现矩阵的加减乘法,必须有矩阵类和调用类和主类-Object-oriented approach to achieve matrix multiplication and subtraction, there must be a matrix class and call the class and master classes
  3. 所属分类:Applet

    • 发布日期:2017-04-17
    • 文件大小:120.81kb
    • 提供者:zhuwenjing
  1. Matrix

    0下载:
  2. java数据结构Matrix类,实现以下功能:1.求转置矩阵;2.判断是否为对称矩阵;3.比较两个矩阵是否相等。-Matrix data structure java class that implements the following functions: a request transposed matrix 2 to determine whether the symmetric matrix 3 compares the two matrices are equal....
  3. 所属分类:Applet

    • 发布日期:2017-04-11
    • 文件大小:1.46kb
    • 提供者:武神
  1. jama-1.0.3.jar

    0下载:
  2. Jama是一个基本的线性代数java包。包括一个基本的Matrix类和5个矩阵分解类(Jama is a basic linear algebra Java packet. Including a basic Matrix class and 5 matrix factorization classes)
  3. 所属分类:Java编程

    • 发布日期:2018-04-22
    • 文件大小:35kb
    • 提供者:yozad.vom
  1. OoJava.java.tar

    0下载:
  2. A class that provide some API for square matrix. Generate, Addition, Multiplication, randomly generate matrices
  3. 所属分类:Java编程

    • 发布日期:2018-04-22
    • 文件大小:1kb
    • 提供者:sihi
« 12 »
搜珍网 www.dssz.com