代码搜索:LED Matrix
找到约 10,000 项符合「LED Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/177349/9458473
m form_matrix.m
function channel_est=form_matrix(SimulationParameters)
global SimulationConstants;
N=SimulationParameters.N;
M=SimulationParameters.M;
if M==1 & N==2
load cir11;
load cir12;
C
www.eeworm.com/read/373250/9467479
m plot_matrix.m
function plot_matrix(G, bw)
% PLOT_MATRIX Plot a 2D matrix as a grayscale image, and label the axes
%
% plot_matrix(M)
%
% For 0/1 matrices (eg. adjacency matrices), use
% plot_matrix(M,1)
if
www.eeworm.com/read/176032/9521466
m matrix_editor.m
%用于演示矩阵编辑程序的脚本文件。
%Designed by Prof D Xue (c) 2000
[mA,nA]=size(A);
h=ddeinit('Excel','matx_edit.xls');
cells=['r1c1:r' int2str(mA), 'c' int2str(nA)];
rc=ddepoke(h,cells, A); rc2=0; i=0;
try
www.eeworm.com/read/175614/9539898
h matrix_op.h
#include"stdio.h"
#include"time.h"
double Surplus(double A[],int m,int n) /*求矩阵行列式*/
{
int i,j,k,p,r;
double X,temp=1,temp1=1,s=0,s1=0;
if(n==2)
{for(i=0;i
www.eeworm.com/read/170249/9813396
h matrix2.h
/************************************************************************
*
* Title : matrix.c
*
* Function : header file for the matrix library.
*
* Dependen-
* cies : matrix.c
www.eeworm.com/read/366144/9829855
c xdr_matrix.c
/* -----------------------------------------------------------------------------
* xdr_Matrix.c - Read and write LinAl matrices with xdr routines.
* Copyright 1998 by rokrau
* -------------
www.eeworm.com/read/169204/9875870
h io_matrix.h
matrix inputmatrix(int m,int n)
{
matrix a(m,n);
double *zh,value=0.0;
zh=new double[M];
int i=0;
int static j=0;
/* Note: The number of "zh" must be equal to
the siz
www.eeworm.com/read/169203/9875923
h io_matrix.h
matrix inputmatrix(int m,int n)
{
matrix a(m,n);
double *zh,value=0.0;
zh=new double[M];
int i=0;
int static j=0;
/* Note: The number of "zh" must be equal to
the siz
www.eeworm.com/read/364444/9906387
c matrix_multiply.c
#include "mpi.h"
#include
//count the multiply of martrix A and B
//The number of processes of this program requires is size+1
int
main (int argc, char *argv[])
{
int i, j, rank, size;
f
www.eeworm.com/read/168218/9931910
h matrix1.h
#include "xcept.h"
#include "vector.h"
template
class Matrix {
public:
Matrix(int r = 0, int c = 0);
Matrix(const Matrix& m); // copy constructor
~Matrix() {delete [] row