代码搜索:Vector

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

代码结果 10,000
www.eeworm.com/read/212047/15167727

c svdstep.c

inline static void chop_small_elements (gsl_vector * d, gsl_vector * f) { const size_t N = d->size; double d_i = gsl_vector_get (d, 0); size_t i; for (i = 0; i < N - 1; i++) { doub
www.eeworm.com/read/167728/5454154

c svdstep.c

static void chop_small_elements (gsl_vector * d, gsl_vector * f) { const size_t N = d->size; double d_i = gsl_vector_get (d, 0); size_t i; for (i = 0; i < N - 1; i++) { double f_i
www.eeworm.com/read/161121/5560317

h intr.h

/* $Id: intr.h,v 1.1 2002/02/28 17:31:25 marcelo Exp $ * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of thi
www.eeworm.com/read/102394/15784133

c svdstep.c

static void chop_small_elements (gsl_vector * d, gsl_vector * f) { const size_t N = d->size; double d_i = gsl_vector_get (d, 0); size_t i; for (i = 0; i < N - 1; i++) { double f_i
www.eeworm.com/read/392007/8368281

htm eqmotion.htm

FDC help: Aircraft Equations of Motion (Beaver)
www.eeworm.com/read/391803/8376794

txt readme.txt

请注意: 本例的各个源描述的编译顺序应该是: 64_tlc.vhd 64_test_vector.vhd
www.eeworm.com/read/391253/8413960

m smt.m

% MATLAB SIMULATION OF NSA FS-1016 CELP v3.2 % COPYRIGHT (C) 1995-99 ANDREAS SPANIAS AND TED PAINTER % % This Copyright applies only to this particular MATLAB implementation % of the FS-1016 CELP
www.eeworm.com/read/291380/8422317

m noiserschreiber.m

function xr=noiserSchreiber(x,K,L,r,repeat,auto) %Syntax: xr=noiserSchreiber(x,K,L,r,repeat,auto) %_______________________________________________ % % Geometrical noise reduction for a time series
www.eeworm.com/read/290205/8496354

m mmono.m

function f=mmono(x) %MMONO Test for Monotonic Vector. % MMONO(X) where X is a vector returns: % 2 if X is strictly increasing, % 1 if X is non decreasing, % -1 if X is non increasing, %
www.eeworm.com/read/188512/8532630

h binarysearch.h

// Fig 20.2: BinarySearch.h // Class that contains a vector of random integers and a function // that uses binary search to find an integer. #include using std::vector; class BinarySe