代码搜索:Vector

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

代码结果 10,000
www.eeworm.com/read/353811/10416490

vhd 相应加法器的测试向量(test bench).vhd

-- download from: www.pld.com.cn & www.fpga.com.cn entity testbench is end; ------------------------------------------------------------------------ -- testbench for 8-bit adder ------------
www.eeworm.com/read/161016/10463592

vhd 相应加法器的测试向量(test bench).vhd

-- download from: www.pld.com.cn & www.fpga.com.cn entity testbench is end; ------------------------------------------------------------------------ -- testbench for 8-bit adder ------------
www.eeworm.com/read/160847/10486180

vhd 相应加法器的测试向量(test bench).vhd

-- download from: www.pld.com.cn & www.fpga.com.cn entity testbench is end; ------------------------------------------------------------------------ -- testbench for 8-bit adder ------------
www.eeworm.com/read/352960/10488770

c dsputil_altivec.c

/* * Copyright (c) 2002 Brian Foley * Copyright (c) 2002 Dieter Shirley * Copyright (c) 2003-2004 Romain Dolbeau * * This library is free software; you can redistribute it an
www.eeworm.com/read/278154/10562247

c xsvdfit.c

/* Driver for routine svdfit */ #include #include #define NRANSI #include "nr.h" #include "nrutil.h" #define NPT 100 #define SPREAD 0.02 #define NPOL 5 int main(void)
www.eeworm.com/read/277077/10670405

txt 测试向量(test bench)和波形产生:vhdl实例---相应加法器的测试向量(test bench).txt

entity testbench is end; ------------------------------------------------------------------------ -- testbench for 8-bit adder ------------------------------------------------------------------
www.eeworm.com/read/421211/10750500

cpp mytritri.cpp

/* ColDet - C++ 3D Collision Detection Library * Copyright (C) 2000 Amir Geva * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Li
www.eeworm.com/read/349581/10815939

cpp matrix_mul.cpp

#include "mathclass.h" matrix operator*( m_real a, matrix const& b ) { matrix c; for( int i=0; i
www.eeworm.com/read/349581/10815987

cpp transq.cpp

#include "mathclass.h" transq identity_transq( quater(1,0,0,0), vector(0,0,0) ); transq transq::inverse() const { quater a = rotation.inverse(); return transq( a, -rotate(a,translation) );
www.eeworm.com/read/349581/10815998

h transq.h

#ifndef TRANSQ_H #define TRANSQ_H class transq { public: quater rotation; vector translation; private: // multiplication friend transq& operator*=( transq &, transq const&