代码搜索:triangular

找到约 1,594 项符合「triangular」的源代码

代码结果 1,594
www.eeworm.com/read/356171/10235557

m distmat0.m

function d = distmat0(x, y) %DISTMAT0 Distance matrix (no for-loops). % % D = DISTMAT0(X, Y) returns the distance matrix with all distances % between the points represented by the rows of X and Y.
www.eeworm.com/read/422697/10619553

m emd_triang.m

% EMD_TRIANG.M % % P. Flandrin, Mar. 13, 2003 - modified Mar. 2, 2006 % % computes and displays EMD for the sum of 2 triangular % waveforms + 1 tone % % produces Figure 2 in % % G. Rilling, P. Fland
www.eeworm.com/read/420306/10804731

m ltvec.m

% LTVEC - Change a Lower-Triangular Matrix into a Vector % Copyright (c) 1998, Harvard University. Full copyright in the file Copyright % % [V] = ltvec(M) % % M = square matrix, only the diagonal a
www.eeworm.com/read/274573/10863528

java lotteryarray.java

/** * @version 1.0 27 Mar 1998 * @author Cay Horstmann */ import corejava.*; public class LotteryArray { public static long lotteryOdds(int high, int number) { long r = 1; in
www.eeworm.com/read/417673/10980772

m tri_mf.m

function y = tri_mf(x, parameter) % TRI_MF Triangular membership function with three parameters. % TRI_MF(x, [a, b, c]) returns a matrix y with the same size % as x; each element of y is a grade of me
www.eeworm.com/read/417561/10985600

c 信号发生器.c

#include #include #define DA0832 XBYTE[0xfffe] #define uchar unsigned char #define uint unsigned int void delay(uchar z) { uchar i; while(z--) for(i=0;i
www.eeworm.com/read/417226/10999608

m emd_triang.m

% EMD_TRIANG.M % % P. Flandrin, Mar. 13, 2003 - modified Mar. 2, 2006 % % computes and displays EMD for the sum of 2 triangular % waveforms + 1 tone % % produces Figure 2 in % % G. Rilling, P. Fland
www.eeworm.com/read/417226/10999614

m triang.m

% TRIANG.M % % P. Flandrin, Mar. 13, 2003 % % generates a triangular waveform % % inputs : - N : # of data samples % - p : period % % output : - x : signal function x = triang(N,p); K
www.eeworm.com/read/276599/7073004

java lotteryarray.java

/** * @version 1.0 27 Mar 1998 * @author Cay Horstmann */ import corejava.*; public class LotteryArray { public static long lotteryOdds(int high, int number) { long r = 1; in
www.eeworm.com/read/464335/7165209

m bslashtx.m

function x = bslashtx(A,b) % BSLASHTX Solve linear system (backslash) % x = bslashtx(A,b) solves A*x = b [n,n] = size(A); if isequal(triu(A,1),zeros(n,n)) % Lower triangular x = forward