代码搜索:trapezoidal

找到约 201 项符合「trapezoidal」的源代码

代码结果 201
www.eeworm.com/read/259565/11782633

m ormsby.m

function fa=ormsby(a,dt,f1,f2,f3,f4) % Function filters input array in the frequency domain with % trapezoidal filter with corner frequencies f1, f2, f3, f4. To reduce end effects % the function doub
www.eeworm.com/read/151143/12233044

m ormsby.m

function fa=ormsby(a,dt,f1,f2,f3,f4) % Function filters input array in the frequency domain with % trapezoidal filter with corner frequencies f1, f2, f3, f4. To reduce end effects % the function d
www.eeworm.com/read/389692/8507190

m trapmf.m

function y = trapmf(x, params) %TRAPMF Trapezoidal membership function. % TRAPMF(X, PARAMS) returns a matrix which is the trapezoidal % membership function evaluated at X. PARAMS = [A B C D] is
www.eeworm.com/read/433114/8545612

m ormsby.m

function fa=ormsby(a,dt,f1,f2,f3,f4) % Function filters input array in the frequency domain with % trapezoidal filter with corner frequencies f1, f2, f3, f4. To reduce end effects % the function doub
www.eeworm.com/read/283403/9023774

txt 71. f28x bldc3_2:sensorless trapezoidal control of bldc motor.txt

Description Sensorless control of a 3 phase BLDC (Brushless DC) motor using a trapezoidal commutation scheme with BEMF (Back-EMF) measurement obtained via a simple resistor divider. Closed loop curre
www.eeworm.com/read/283403/9023812

txt 70. f28x bldc3_1:sensored trapezoidal control of bldc motor using hall sensors.txt

Description Sensored control of a 3 phase BLDC (Brushless DC) motor using a Trapezoidal commutation scheme based on 3 Hall effect position sensors. This system implementation is set up to generate a
www.eeworm.com/read/181714/9240361

m trapezrule.m

function T = trapezrule(f,a,b,m) % Approximate integral by trapezoidal rule % Version 4.06.2004. INCBOX x = linspace(a,b,m+1); % grid points T = (feval(f,a) + feval(f,b))/2
www.eeworm.com/read/359005/10171565

m trapmf.m

function y = trapmf(x, params) %TRAPMF Trapezoidal membership function. % TRAPMF(X, PARAMS) returns a matrix which is the trapezoidal % membership function evaluated at X. PARAMS = [A B C D] is
www.eeworm.com/read/358827/10178430

m trpzds.m

function INTf = trpzds(f,a,b,N) %integral of f(x) over [a,b] by trapezoidal rule with N segments if nargin < 4 N = 100; end if (abs(b - a) < eps | N
www.eeworm.com/read/458661/7291939

m upulse.m

% upulse.m - generates trapezoidal, rectangular, triangular pulses, or a unit-step % % Usage: y = upulse(t,td,tr,tf) (trapezoidal pulse) % y = upulse(t,0, tr,tf) (triangular pulse)