代码搜索:Parallel
找到约 6,530 项符合「Parallel」的源代码
代码结果 6,530
www.eeworm.com/read/423266/10574987
m m5_24.m
A1=[-2 2 1;0 -2 4;1 -4 0];
B1=[0;0;-1];
C1=[1 -1 1];
D1=1;
G1=ss(A1,B1,C1,D1);
A2=[0 1 0;0 0 1;-5 -3 -2];
B2=[0;0;1];
C2=[1.5 1 0.5];
D2=2;
G2=ss(A2,B2,C2,D2);
G=parallel(G1,G2)
www.eeworm.com/read/423266/10575051
m m5_25.m
%1
G1=tf([1 3],conv(conv([1 1],[1 1]),[1 2]));
G2=tf([3 1 4],[5 12 3]);
G=G1+G2
%2
z=-3;
p=[-1 -1 -2];
k=1;
G1=zpk(z,p,k);
G2=tf([3 1 4],[5 12 3]);
G=parallel(G1,G2)
www.eeworm.com/read/349844/10796533
txt how_to_compile.txt
-------
FFdecsa
-------
Compiling is as easy as running a make command, if you have gcc and are
using a little endian machine. 64 bit machines have not been tested but
may work with little or no chan
www.eeworm.com/read/460020/7258823
m example5_10.m
%MATLAB PROGRAM example5_10.m
%
a1=[1 4;-2 -5];b1=[1;0];
c1=[2 1];d1=3;
a2=[0 -1;-3 7];b2=[0;1];
c2=[3 4];d2=1;
[a,b,c,d]=parallel(a1,b1,c1,d1,a2,b2,c2,d2)
www.eeworm.com/read/441819/7664368
htm jan axelson's parallel port faq.htm
Jan Axelson's Parallel Port FAQ
www.eeworm.com/read/137691/5819726
todo
- The handling of fuse and lock bits needs some serious work. As it stands
it does not work with Hi-V parallel programming (on stk500). I've
started working on this, but it was way too intusi
www.eeworm.com/read/123438/6059124
plip readme2.plip
(2nd attempt. 1st bounced.)
Hi again
About my previous mail: I've looked into parallel.asm, and I'm
rather confused. Looks like the code agrees with you, but not
the protocol description prece
www.eeworm.com/read/322905/6301266
plip readme2.plip
(2nd attempt. 1st bounced.)
Hi again
About my previous mail: I've looked into parallel.asm, and I'm
rather confused. Looks like the code agrees with you, but not
the protocol description prece
www.eeworm.com/read/486900/6519688
m m5_24.m
A1=[-2 2 1;0 -2 4;1 -4 0];
B1=[0;0;-1];
C1=[1 -1 1];
D1=1;
G1=ss(A1,B1,C1,D1);
A2=[0 1 0;0 0 1;-5 -3 -2];
B2=[0;0;1];
C2=[1.5 1 0.5];
D2=2;
G2=ss(A2,B2,C2,D2);
G=parallel(G1,G2)