代码搜索:trapezoidal
找到约 201 项符合「trapezoidal」的源代码
代码结果 201
www.eeworm.com/read/112799/15476522
c trapez.c
/* trapez.c - trapezoidal wavetable: D1 rising, D2 steady */
double trapez(D, D1, D2, i)
int D, D1, D2, i;
{
if (i < D1)
return i/(double) D1;
else
if (i < D1+
www.eeworm.com/read/315854/13535380
txt trapez_g.txt
%调用格式 =trapez_g('f_name',a,b,n)
%f_name: 被积函数的文件名f(x)
% a:x的上限
% b:x的下限
% 部分区间数
%实例:trapez_g('sin',0,pi,20)
function I=trapez_g(f_name,a,b,n)
n=n;hold off
h=(b-a)/n;
x=a+(0:n)*h;
f=feval(f_n
www.eeworm.com/read/139332/5799961
h td_ninetuple.h
// Copyright (c) 1997 Tel-Aviv University (Israel).
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org); you may redistribute it under
// the terms of the Q Public License version
www.eeworm.com/read/259306/11808488
txt integral.c.txt
//####################################################################
// Estimating PI using the fact that the integral of 1/(1+x*x) from 0
// to 1 is PI/4.
// The purpose of the program is to com
www.eeworm.com/read/141300/5770780
h numenum.h
/**********
Copyright 1991 Regents of the University of California. All rights reserved.
Authors: 1991 David Gates
**********/
/*
* Enumerations used by the numerical simulation routines
*/
/* Mem
www.eeworm.com/read/139332/5799962
h td_predicates.h
// Copyright (c) 1997 Tel-Aviv University (Israel).
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org); you may redistribute it under
// the terms of the Q Public License version
www.eeworm.com/read/375515/2724162
m m5_1.m
%%%%%%%%%%%%%%%% Trapezoidal or Simpson %%%%%%%%%%%%%%%%%%%%%%%%%%%
fprintf('\n Rules of Trapezoidal/Simpson\n');
fprintf('The function to be integrated is hard--coded infunction()\n');
z=input('
www.eeworm.com/read/283403/9023793
zip 71. f28x bldc3_2:sensorless trapezoidal control of bldc motor.zip
www.eeworm.com/read/461264/7230724
pro tsum.pro
FUNCTION TSUM,X,Y,IMIN,IMAX ;Trapezoidal summation
;+
; NAME:
; TSUM
; PURPOSE:
; Trapezoidal summation of the area under a curve.
; EXPLANATION:
; Adapted from the pr