代码搜索:Generates
找到约 10,000 项符合「Generates」的源代码
代码结果 10,000
www.eeworm.com/read/475710/6775943
m fmconst.m
function [y,iflaw] = fmconst(N,fnorm,t0);
%FMCONST Signal with constant frequency modulation.
% [Y,IFLAW] = FMCONST(N,FNORM,T0) generates a frequency modulation
% with a constant frequency fnorm.
%
www.eeworm.com/read/475710/6775946
m anastep.m
function y=anastep(N,ti);
%ANASTEP Analytic projection of unit step signal.
% Y=ANASTEP(N,TI) generates the analytic projection of a
% unit step signal.
%
% N : number of points.
% TI : starting pos
www.eeworm.com/read/475366/6779001
m gen_cpfsk_gmsk.m
function q = gen_cpfsk_gmsk(fs, L, BT)
% This script generates g and q pulse
% Input:
% L: memory length
% fs: Number of samples per symbol
% BT: -3dB bandwidth of thd Gaussi
www.eeworm.com/read/475366/6779049
m gen_cpfsk_gmsk.m
function q = gen_cpfsk_gmsk(fs, L, BT)
% This script generates g and q pulse
% Input:
% L: memory length
% fs: Number of samples per symbol
% BT: -3dB bandwidth of thd Gaussi
www.eeworm.com/read/233441/6788049
c alg31.c
#include
#include
#include
/*
* generates:
original order of the vector: 69 23 80 42 17 15 26 51 19 12 35 8
partial sort of vector: seven elements
8
www.eeworm.com/read/233441/6788054
c alg35.c
#include
#include
#include
// generates: n d a n a d d n a d a n a n d a d n
int main()
{
vector< char, allocator > vec( 3 );
ostream_it
www.eeworm.com/read/233441/6788064
c alg39.c
#include
#include
#include
/* generates:
original element sequence:
3 4 5 0 1 2
sequence applying swap() to support bubble sort:
0 1 2 3 4 5
*
www.eeworm.com/read/233441/6788174
c io20_3.03.c
// #include
#include
/**
** generates:
stanl@john:d.ch20 313 : a.out < alice_emma
characters actually read: 52
characters actually read: 60
characters actual
www.eeworm.com/read/475547/6790968
c msp430x21x2_ta0_17.c
//******************************************************************************
// MSP430F21x2 Demo - Timer0_A3, PWM TA0_0 - TA0_2, Up Mode, 32kHz ACLK
//
// Description: This program generates
www.eeworm.com/read/474856/6808549
m ls_mse_calc.m
%Function Declaration:
function ms_error=LS_MSE_calc(X,H,Y);
%This function generates mean squared error for the the LS estimator..
%EVALUATION OF Hls
Hls =(inv(X)) * Y;
%The simplest of 'em all