代码搜索:Vector
找到约 10,000 项符合「Vector」的源代码
代码结果 10,000
www.eeworm.com/read/168118/9938371
m theogram.m
function [theo,tlog,rcs,pm,p]=theogram(vins,dens,z,wlet,tw,tzobj,x,fmult)
% [theo,tlog,rcs,pm,p]=theogram(vins,dens,z,wlet,tw,tzobj,x,fmult)
%
% THEOGRAM computes a 1-D synthetic seismogram given reg
www.eeworm.com/read/168118/9938397
m theosimple.m
function [theo,tlog,rcs,pm,p]=theosimple(sonic,dens,z,fmult,wlet,tw)
% [theo,tlog,rcs,pm,p]=theosimple(sonic,dens,z,fmult,wlet,tw)
%
% THEOSIMPLE computes a 1-D seismic model (Theogram) from well
% l
www.eeworm.com/read/168111/9939394
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/167879/9948722
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/167735/9953656
m nearest.m
function [zj,j,d] = nearest(z,xi);
% NEAREST: return the vector zj in z that is nearest to xi
% [zj,j,d] = nearest(z,xi)
% z - d*J vectors that need to be compared to xi
% xi - the vector that wants
www.eeworm.com/read/362500/9995954
m wrtpulse.m
function [newu,newy] = wrtpulse(u,y,n,delay);
%WRTPULSE Creates input/output matrices for dynamic model identification
% This function rewrites vectors of system inputs and output
% so that they
www.eeworm.com/read/362213/10012652
m hybrid.m
function [Y,UD] = hybrid(Np,Dp,Nd,Dd,T,t,U);
%HYBRID [Y,UD]= hybrid(Np,Dp,Nd,Dd,T,t,U);
%
% HYBRID returns the output vector Y and the control vector UC
% of a hybrid syste
www.eeworm.com/read/166306/10024329
m plot.m
%二维图(一元函数图)
%用法 plot(x,y,s) 其中x,y为向量,每一对分量代表一个数据点。
% s为表示颜色、连线和标记选择的字符串
%图形的线型,标记,颜色均可设定,常用有
% 颜色 | 线型 标记
% --------------------- -
www.eeworm.com/read/166306/10024604
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/361001/10069711
m convertf.m
%
% [A,b,c,K]=convertf(A,b,c,K)
%
% converts free variables in a SeDuMi problem into nonnegative LP variables.
%
function [A,b,c,K]=convertf(A,b,c,K)
%
% Get the number of constraints.
%
m=length(b);