代码搜索:Vector

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

代码结果 10,000
www.eeworm.com/read/456224/6278880

m simulatedannealing.m

% Optimization Using MATLAB, Chapter 9 % Dr. P.Venkataraman % Chapter: 9, Section 9.2 % Simulated Annealing %************************************************ % requires: UpperBound_nVar.m %
www.eeworm.com/read/472938/6306878

m f2.m

function y=f2(x) % f1 is Rosenbrock function % The variabe x is a vector % d=length(x); z=0; for k=1:d-1 z=z+(100*(x(k+1)-x(k)^2)^2+(x(k)-1)^2); end y=z;
www.eeworm.com/read/156871/6324022

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/379927/6333895

java kmeans.java

/* * Implements the k-means algorithm * * Manas Somaiya * Computer and Information Science and Engineering * University of Florida * * Created: October 29, 2003 * Last updated: October
www.eeworm.com/read/493952/6385055

html 352-354.html

www.eeworm.com/read/493952/6385068

html 333-336.html

www.eeworm.com/read/494076/6387634

m tdma.m

function X = TDMA(A,D,C,B) % Tridiagonal Matrix Algorithm(三对角阵算法) % % Function: to solve the Tridiagonal system CX=B, where C is a Tridiagonal matrix % % Input - A is the subdiagonal of the
www.eeworm.com/read/493294/6400019

m findnlab.m

%FINDNLAB Determine indices of specified classes (numeric) % % J = FINDNLAB(A,NLAB) % % INPUT % A Dataset % NLAB vector with numerical indices of reqested classes % % OUTPUT %
www.eeworm.com/read/488496/6488242

cpp vecprint.cpp

/* * This file contains code from "C++ Primer, Fourth Edition", by Stanley B. * Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the * copyright and warranty notices given in that
www.eeworm.com/read/488496/6488254

cpp vecprintmain.cpp

/* * This file contains code from "C++ Primer, Fourth Edition", by Stanley B. * Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the * copyright and warranty notices given in that