代码搜索:LED Matrix

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

代码结果 10,000
www.eeworm.com/read/206842/15288404

cpp matrix_mul.cpp

#include "iostream.h" #include "stdio.h" #define M 10 int count=0;//count记录最少连乘次数 //对矩阵的规格p[n],判断最优相乘次序m[][],同时记录其最佳断开位置s[][] void matrixChain (int *p,int n,int m[M][M],int s[M][M]) { for
www.eeworm.com/read/206842/15288405

plg matrix_mul.plg

Build Log --------------------Configuration: matrix_mul - Win32 Debug-------------------- Command Lines Creating temporary file "C:\DOCUME~1\ym
www.eeworm.com/read/206842/15288406

ncb matrix_mul.ncb

www.eeworm.com/read/206842/15288408

dsp matrix_mul.dsp

# Microsoft Developer Studio Project File - Name="matrix_mul" - Package Owner= # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86
www.eeworm.com/read/206842/15288409

dsw matrix_mul.dsw

Microsoft Developer Studio Workspace File, Format Version 6.00 # 警告: 不能编辑或删除该工作区文件! ############################################################################### Project: "matrix_mul"=.\matri
www.eeworm.com/read/206842/15288410

opt matrix_mul.opt

www.eeworm.com/read/206280/15297112

txt 42matrix.txt

distancematrix 0 15 30 23 32 55 33 37 92 114 92 110 96 90 74 76 82 67 72 78 82 159 122 131 206 112 57 28 43 70 65 66 37 103 84 125 129 72 126 141 183 124 15 0 34 23
www.eeworm.com/read/4/101

m matrix1.m

m=[1 2 3 4;5 6 7 8;9 10 11 12] p=[1 1 1 1 2 2 2 2 3 3 3 3] a=[] b=zeros(2,3) c=ones(2,3) d=eye(2,3) e=eye(3,3)
www.eeworm.com/read/4/107

m matrix2.m

a=[1 2 3;4 5 6;7 8 9] a1=a(2,:) a2=a(:,2) a3=a(:) a4=a(1:2,2:3) a5=a(2:-1:1,:) a6=a(:,3:-1:2) a7=a;a7(1:2,:)=[] a8=a;a8(:,1)=[] a9=[a a2] a10=[a;a1]
www.eeworm.com/read/4/110

m matrix3.m

a=[1 2 3 4 5 6] b=[1 2 1 2 1 2] c1=a+a c2=a*b c=[2 7 3;3 9 4;1 5 3] c3=det(c) c4=inv(c) [v,d]=eig(c)