代码搜索:LED Matrix
找到约 10,000 项符合「LED Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/368510/9691395
class matrix.class
www.eeworm.com/read/368510/9691408
jad matrix.jad
// Decompiled by DJ v3.9.9.91 Copyright 2005 Atanas Neshkov Date: 2/13/2008 10:16:10 PM
// Home Page : http://members.fortunecity.com/neshkov/dj.html - Check often for new version!
// Decompiler o
www.eeworm.com/read/368447/9694198
pas matrix.pas
unit Matrix;
interface
// Transpose a Variant matrix.
// Transpose1 uses a direct, readable, maintainable approach.
// Transpose2 accesses the Variant array data directly, which is
// much fa
www.eeworm.com/read/368337/9701206
c matrix.c
#include
#include
int
main (void)
{
int i, j;
gsl_matrix * m = gsl_matrix_alloc (10, 3);
for (i = 0; i < 10; i++)
for (j = 0; j < 3; j++)
g
www.eeworm.com/read/172493/9705461
cpp matrix.cpp
#include
#include
#include
using namespace std;
const int BALANCES_ROWS = 11;
const int BALANCES_COLS = 6;
const double RATE_MIN = 5;
const double RATE_MAX =
www.eeworm.com/read/171387/9758286
s matrix.s
www.eeworm.com/read/171380/9758425
java matrix.java
package shuli;
import java.util.Vector;
public interface Matrix {
Object get(int i, int j);
void put(int i,int j, Object value);
public Vector multiply(Vector v);
String toString(Str
www.eeworm.com/read/367177/9767809
java matrix.java
package PKU.DFS;
import java.util.Scanner;
/**
* ID:2078
* DFS
* @author yhm
*
*/
public class Matrix {
static int size;
static int[][] M;
static int result;
/**
* @param