代码搜索:Matrix

找到约 10,000 项符合「Matrix」的源代码

代码结果 10,000
www.eeworm.com/read/455737/7367357

hlp matrix.hlp

www.eeworm.com/read/455737/7367360

csv matrix.csv

"Function","GJ_step","(Mat, [Typ], [IntValue]) ","Gauss-Jordan algorithm step by step","Linear Algebra","Gauss-Jordan algorithm step by step",,"matrix","matrix.hlp","21" "Function","M_ABS","(v) ","No
www.eeworm.com/read/455737/7367362

xla matrix.xla

www.eeworm.com/read/455716/7367865

h matrix.h

//matrix.h////////////////////////////////////////////////////////////////// // 2005.1.13-16:02 By Superman #include "math.h" /*****************************************************************
www.eeworm.com/read/455020/7379602

cs matrix.cs

using System; using System.Collections.Generic; using System.Text; namespace WindowsApplication1 { class Matrix { public static void Transpose(double[,] a, double[,]
www.eeworm.com/read/454849/7382279

h matrix.h

//matrix.h //矩阵类及其运算 #if !defined(_MATRIX_H) #define _MATRIX_H #include class CMatrix { public: CMatrix(){} void set(int row,int col); //设置矩钲的行列数
www.eeworm.com/read/454849/7382281

cpp matrix.cpp

//CMatrix.cpp #include #include #include "matrix.h" CMatrix::CMatrix(int row,int col) { CMatrix::row=row; CMatrix::col=col; elem=new double[row*col]; for(int i=0;i
www.eeworm.com/read/454368/7393089

h matrix.h

#ifndef __Matrix_h__ #define __Matrix_h__ #include "Vector3.h" /** * This class represents a 3x3-matrix * */ template class Matrix3x3 { public: /** * The columns of the matrix
www.eeworm.com/read/454368/7393107

cpp matrix.cpp

#include "Matrix.h" #include "Common.h" RotationMatrix& RotationMatrix::fromKardanRPY (const double yaw, const double pitch, const double roll){ double cy=cos(yaw); double sy=sin(yaw); double
www.eeworm.com/read/453558/7417039

java matrix.java

package shared; import java.lang.*; /** The Matrix class contains functions useful for manipulation of double arrays * in MLJ. * @author James Louis Java Implemtation. */ public class Matri