代码搜索:triangular
找到约 1,594 项符合「triangular」的源代码
代码结果 1,594
www.eeworm.com/read/297034/8058863
m amtriang.m
function y = amtriang(N,t0,T);
%AMTRIANG Generate triangular amplitude modulation.
% Y = AMTRIANG(N,T0,T) generates a triangular amplitude modulation
% centered on a time T0, and with a spread propor
www.eeworm.com/read/333698/12664571
m ker1.m
function ker=ker1(x);
% the triangular kernel
% INPUT:
% x size 1,n vector
% OUTPUT:
% ker size 1,n vector
k=(1-abs(x));
ker=max(k,(zeros(1,length(x))));
www.eeworm.com/read/146126/12668472
cpp lowertriangularmatrix.cpp
// test lower triangular matrix class
#include
#include "lowerTriangularMatrix.h"
using namespace std;
int main(void)
{
lowerTriangularMatrix x(20);
x.set(1,1,22);
www.eeworm.com/read/333417/12683561
m amtriang.m
function y = amtriang(N,t0,T);
%AMTRIANG Generate triangular amplitude modulation.
% Y = AMTRIANG(N,T0,T) generates a triangular amplitude modulation
% centered on a time T0, and with a spread propor
www.eeworm.com/read/145495/12717731
m fig5_40.m
% Chapter 5: Figure 5.40, p. 273
%
% Compute the response of the Mobile Robot Control
% System to a triangular wave input.
%
numg=[10 20]; deng=[1 10 0];
[num,den]=cloop(numg,deng);
t=[0:0.1:8.2
www.eeworm.com/read/145017/12756105
m dijk.m
function D = dijk(A,s,t)
%DIJK Shortest paths from nodes 's' to nodes 't' using Dijkstra algorithm.
% D = dijk(A,s,t)
% A = n x n node-node weighted adjacency matrix of arc lengths
% (Note
www.eeworm.com/read/245816/12779701
m amtriang.m
function y = amtriang(N,t0,T);
%AMTRIANG Generate triangular amplitude modulation.
% Y = AMTRIANG(N,T0,T) generates a triangular amplitude modulation
% centered on a time T0, and with a spread propor
www.eeworm.com/read/245632/12786826
c dsymv.c
#include "blas.h"
int dsymv_(char *uplo, int *n, double *alpha, double *a, int *lda,
double *x, int *incx, double *beta, double *y, int *incy)
{
long i, j, ix, iy, jx, jy, kx, ky;
int
www.eeworm.com/read/245632/12786829
c dpotf2.c
/* dpotf2.f -- translated by f2c (version 20000121).
You must link the resulting object file with the libraries:
-lf2c -lm (in that order)
*/
#include "f2c.h"
/* Table of constant values */
s
www.eeworm.com/read/144399/12797380
m lunopivvec.m
function [L,U] = luNopivVec(A,ptol)
% luNopivVec LU factorization without pivoting - vectorized implementation
% Row operations to compute submatrix A(i+1:n,i+1:n) resulting
%