代码搜索:Integration
找到约 3,762 项符合「Integration」的源代码
代码结果 3,762
www.eeworm.com/read/360770/10079192
m gausquad.m
function y = gausquad (a,b,n,f)
%--------------------------------------------------------------------
% Usage: y = gausquad (a,b,n,f);
%
% Description: Use the n-point Gauss-Legendre formul
www.eeworm.com/read/360770/10079243
m monte.m
function y = monte (a,b,n,f)
%------------------------------------------------------------------------
% Usage: y = monte (a,b,n,f)
%
% Description: Use the Monte Carlo method to integrate a
www.eeworm.com/read/360770/10079281
m simpson.m
function y = simpson (a,b,n,f)
%-----------------------------------------------------------------------
% Usage: y = simpson (a,b,n,f);
%
% Description: Use Simpson's rule to numerically int
www.eeworm.com/read/359349/10154012
m demo1.m
clear;
t=-1:0.01:6;
t1=0.02;
f=2*t.*(u(t)-u(t-1))+2*(u(t-1)-u(t-4))-2*(t-5).*(u(t-4)-u(t-5));
f1=2*(u(t)-u(t-1))-2*(u(t-4)-u(t-5));
f2=t.^2.*(u(t)-u(t-1))+(2*(t-1)+1).*(u(t-1)-u(t-4))+(-((t-5).^2
www.eeworm.com/read/353255/10459321
m gquad2d6.m
function vol = gquad6(fun,xlow,xhigh,ylow,yhigh)
%usage: vol = gquad6(fun,xlow,xhigh,ylow,yhigh)
%
% ==== Six Point by Six Point Double Integral Gauss Formula ====
%
% This function determines the
www.eeworm.com/read/353255/10459335
m gquad6.m
% ==== Six Point Composite Gauss Formula ====
% ==== With Weight Factors Included ====
function area = gquad6(fun,xlow,xhigh,mparts)
% area = gquad6(fun,xlow,xhigh,mparts)
% This function
www.eeworm.com/read/353255/10459401
m gquad.m
function area = gquad (fun,xlow,xhigh,mparts,bp,wf,y)
% area = gquad (fun,xlow,xhigh,mparts,bp,wf)
% or
% area = gquad (fun,xlow,xhigh,mparts,nquad)
% or
% area = gquad (fun,xlow,xhigh,mparts
www.eeworm.com/read/422481/10634560
xdc package.xdc
requires ti.sdo.ce.video;
/*!
* ======== h264enc ========
* Simple Codec Engine compatible video "encoder"
*
* This codec illustrates the simplest integration into the codec
* engine. Only
www.eeworm.com/read/422478/10634682
xdc package.xdc
requires ti.sdo.ce.video;
/*!
* ======== h264dec ========
* Simple Codec Engine compatible video "decoder"
*
* This codec illustrates the simplest integration into the codec
* engine. Only