代码搜索:Vector
找到约 10,000 项符合「Vector」的源代码
代码结果 10,000
www.eeworm.com/read/244945/12829596
m interp1.m
function yi = interp1(varargin)
% yi=interp1(x,y,xi)根据数据(x,y)给出在xi的线性插值结果yi.
% yi=interp1(x,y,xi,'spline')使用三次样条插值.
% yi=interp1(x,y,xi,'cubic')使用三次插值.
% 例如
% clear;close;fplot('sin',[0,2*pi]);
www.eeworm.com/read/244790/12843319
m rsom.m
% Basic implementation of the Recursive SOM (RSOM)
%
% Based on the algorithm described in the following paper:
%
% G. A. Barreto & A. F. R. Araujo
% "Time in Self-Organizing Maps: An Overview o
www.eeworm.com/read/143595/12857045
h hsigp.h
/* ----------------------------------------------------------- */
/* */
/* ___ */
/*
www.eeworm.com/read/330732/12871923
h ccontroller.h
#ifndef CController_H
#define CController_H
//turn off the warnings for the STL
#pragma warning (disable : 4786)
//------------------------------------------------------------------------
//
www.eeworm.com/read/330732/12872330
h cga.h
#ifndef CGA_H
#define CGA_H
//------------------------------------------------------------------------
//
// Name: Cga.h
//
// Author: Mat Buckland 2002
//
// Desc: The evolutionary algori
www.eeworm.com/read/330414/12895287
c convolve.c
/*
********************************************************************************
*
* GSM AMR-NB speech codec R98 Version 7.6.0 December 12, 2001
* R99 Ve
www.eeworm.com/read/330307/12902790
h gmr.h
/*
Copyright (c) 2008 Florent D'halluin , Sylvain Calinon,
LASA Lab, EPFL, CH-1015 Lausanne, Switzerland,
http://www.calinon.ch, http://lasa.epfl.ch
The program is free for non-commerc
www.eeworm.com/read/142433/12945976
cpp fft2.cpp
#include "NumMeth.h"
void fft( Matrix& RealA, Matrix& ImagA);
void fft2( Matrix& RealA, Matrix& ImagA) {
// Routine to compute two dimensional Fourier transform
// using FFT algorithm
// Inputs
//
www.eeworm.com/read/329331/12960202
m plot.m
%二维图(一元函数图)
%用法 plot(x,y,s) 其中x,y为向量,每一对分量代表一个数据点。
% s为表示颜色、连线和标记选择的字符串
%图形的线型,标记,颜色均可设定,常用有
% 颜色 | 线型 标记
% --------------------- -
www.eeworm.com/read/329331/12960595
m interp1.m
function yi = interp1(varargin)
% yi=interp1(x,y,xi)根据数据(x,y)给出在xi的线性插值结果yi.
% yi=interp1(x,y,xi,'spline')使用三次样条插值.
% yi=interp1(x,y,xi,'cubic')使用三次插值.
% 例如
% clear;close;fplot('sin',[0,2*pi]);