代码搜索:sequence
找到约 10,000 项符合「sequence」的源代码
代码结果 10,000
www.eeworm.com/read/301588/13855687
m exa113.m
%exa113_arbitrary_d.m for example 1-13
%arbitrary sequence任意序列
clear all;
N=8;
x=zeros(1,N);
x(1)=8.0;
x(2)=3.4;
x(3)=1.8;
x(4)=5.6;
x(5)=2.9;
x(6)=0.7;
xn=0:N-1;
stem(xn,x);
axis([-1 8 0
www.eeworm.com/read/301588/13855694
m exa116.m
%exa116_sine_d.m for example 1-16 有问题啊!!
%sine sequence正弦序列
clear all;
N=32;
A=3;
f=100;
fai=1.2;
xn=0:N-1;
x=A*sin(2*pi*f*(xn/N)+fai);
stem(xn,x)
axis([-1 32 -3.2 3.2])
www.eeworm.com/read/301588/13855722
m exa139.m
%exa139_hamming_interative.m for example 1-39
%hamming interative sequence海明窗迭代序列
clear all;
p=hamming(32);
t=0:320;
d=(0:9)'*32;
y=pulstran(t,d,p);
plot(t,y)
www.eeworm.com/read/136031/13877574
cpp list7-3.cpp
//Listing 7.3
//This Program demonstrates how one container can be
// used to construct another container
#include
#include
#include
using namespace std;
voi
www.eeworm.com/read/136031/13877579
cpp list7-2.cpp
// Listing 7.2 demonstrates how a constructor can be used to initialize a container
// with a certain number of objects initialized to a specific value.
#include
#include
usi
www.eeworm.com/read/152843/5663439
c rfc1201.c
/*
* Linux ARCnet driver - RFC1201 (standard) packet encapsulation
*
* Written 1994-1999 by Avery Pennarun.
* Derived from skeleton.c by Donald Becker.
*
* Special thanks to Contemporary Contro
www.eeworm.com/read/152721/5667432
java issuerandserialnumber.java
package org.bouncycastle.asn1.pkcs;
import java.math.BigInteger;
import org.bouncycastle.asn1.*;
import org.bouncycastle.asn1.x509.*;
public class IssuerAndSerialNumber
implements DEREncodable
www.eeworm.com/read/152721/5667498
java issuerandserialnumber.java
package org.bouncycastle.asn1.cms;
import java.math.BigInteger;
import org.bouncycastle.asn1.*;
import org.bouncycastle.asn1.x509.*;
public class IssuerAndSerialNumber
implements DEREncodable
{