代码搜索结果

找到约 10,000 项符合 LED Matrix 的代码

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

matrix.h

//matrix.h////////////////////////////////////////////////////////////////// // 2005.1.13-16:02 By Superman #include "math.h" /*****************************************************************

matrix.cs

using System; using System.Collections.Generic; using System.Text; namespace WindowsApplication1 { class Matrix { public static void Transpose(double[,] a, double[,]

matrix.h

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

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

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

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

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

matrix.m

function [st,c]=matrix(machine_total,job_total,T,pop_size,seq_init) for k=1:pop_size for i=1:machine_total for j=1:job_total if(i==1 && j==1) c(i,j,k)=T(1,seq_init(k,j));