代码搜索结果

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

2-2.m

z1 = [1 2 4;3 4 1]; z2 = [-1 2 2; -5 -6 1]; b=[0;-1]; con1=concur(b,3); n1 = netsum(z1,z2) n2 = netprod(z1,z2) n3 = netsum(z1,z2,con1)

ln.asm

;|---------------------------------------| ;|Program name : Ln.asm | ;|Use bady: | ;|Programer: Alton | ;|Simple version | ;|---------------------------------------| .ar

ln.asm

;|---------------------------------------| ;|Program name : Ln.asm | ;|Use bady: | ;|Programer: Alton | ;|Simple version | ;|---------------------------------------| .ar

fzu_1393.cpp

#include #include using namespace std; typedef struct TPoint { double x; double y; double z; }TPoint; const double eps = 1e-6; int main() { TPoint

2-2.m

z1 = [1 2 4;3 4 1]; z2 = [-1 2 2; -5 -6 1]; b=[0;-1]; con1=concur(b,3); n1 = netsum(z1,z2) n2 = netprod(z1,z2) n3 = netsum(z1,z2,con1)

2-2.m

z1 = [1 2 4;3 4 1]; z2 = [-1 2 2; -5 -6 1]; b=[0;-1]; con1=concur(b,3); n1 = netsum(z1,z2) n2 = netprod(z1,z2) n3 = netsum(z1,z2,con1)

complex-3.c

struct complex { float r; float i; }; struct complex cmplx (float, float); struct complex f (float a, float b) { struct complex c; c.r = a; c.i = b; return c; } main () { struct compl

conv.m

function Z=conv(X,Y) %CONV (overloaded) % Author Johan L鰂berg % $Id: conv.m,v 1.1 2005/03/01 21:50:04 johanl Exp $ x_lmi_variables = X.lmi_variables; n = X.n; m = X.m; Z=X; Z.basis=[

bpoint_imp.cpp

#include "stdafx.h" #include "bpoint.h" Block SquDistance(const BPoint& a,const BPoint& b) { return (a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y) + (a.z - b.z) * (a.z - b.z);