代码搜索:Vector
找到约 10,000 项符合「Vector」的源代码
代码结果 10,000
www.eeworm.com/read/449771/7496691
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/449504/7502323
m dblehistomap.m
function [out]=dblehistomap(long,lat,var1,var2,varargin)
% PURPOSE: This function links a map and two histograms
%------------------------------------------------------------------------
% USAGE: o
www.eeworm.com/read/449504/7502357
m driftmap.m
function driftmap(long,lat,variable,nl,nc,interpol,varargin)
% PURPOSE: This function adds a grid to the map and for each rectangle of the grid computes
% the mean of the spatial units included in t
www.eeworm.com/read/449504/7502372
m gini.m
function [f,F,g,G,GINI]=gini(variable)
% PURPOSE: This function computes the Gini index and other related parameters for the Lorentz Curve
%----------------------------------------------------------
www.eeworm.com/read/443236/7635845
cpp execution_time.cpp
#include
#include
#include
#include
#include
#include
#include
#include "sort.h"
using namespace std;
using std::cou
www.eeworm.com/read/441245/7672747
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/439446/7708547
m gain.m
function [g,w] = gain(num,den)
% Computes the gain function in dB of a
% transfer function at 256 equally spaced points
% on the top half of the unit circle
% Numerator coefficients are in vector nu
www.eeworm.com/read/439446/7708625
m gain.m
function [g,w] = gain(num,den)
% Computes the gain function in dB of a
% transfer function at 256 equally spaced points
% on the top half of the unit circle
% Numerator coefficients are in vecto
www.eeworm.com/read/439446/7708719
m gain.m
function [g,w] = gain(num,den)
% Computes the gain function in dB of a
% transfer function at 256 equally spaced points
% on the top half of the unit circle
% Numerator coefficients are in vector nu
www.eeworm.com/read/438067/7737328
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;