代码搜索:10 是什么?
找到约 10,000 项符合「10 是什么?」的源代码
代码结果 10,000
www.eeworm.com/read/167466/9968330
m fig10_10.m
echo on
% Fig 10-10
% (a) 64 pt FFT without zero padding
% (b) 64 pt FFT with zero padding to 256 pt
% (c) 256 pt FFT without zero padding
echo off
n1=0:1:63; % data size
N=256; % padded FFT size
www.eeworm.com/read/362220/10012170
m program_10_10.m
% 采用补零的扩展模式(参见dwtmode函数)
% 装载一维尺度信号
load leleccum;
s = leleccum(1:3920);
% 使用db1在第3层进行分解
[c,l] = wavedec(s,3,'db1');
subplot(4,1,1);plot(s);
title('原始信号');
% 从小波分解结构[c,l]中提取1、2及3层的细节系数
[cd1
www.eeworm.com/read/362213/10012600
m ex10_10.m
% Example 10.10
% plots Figure 10.14
num = [1 0.05];
den = [1 .1 0];
clf
subplot(221),rlocus(num,den)
title('(a)')
num = [1 0.1];
den = [1 .1 0];
subplot(222),rlocus(num,den)
title('(b)')
n
www.eeworm.com/read/166053/10039134
c alg10-10.c
/* alg10-10.c 归并排序 */
#include
typedef int InfoType; /* 定义其它数据项的类型 */
#include"c9.h"
#include"c10-1.h"
void Merge(RedType SR[],RedType TR[],int i,int m,int n)
{ /* 将有序的SR[i..m]
www.eeworm.com/read/361569/10045091
c 10rkt10.c
#include "stdio.h"
#include "10rkt1.c"
main()
{ int i,j;
void rkt1f(double,double [],int,double []);
double t,h,y[3],z[3][11];
y[0]=-1.0; y[1]=0.0; y[2]=1.0;
t=0.0; h
www.eeworm.com/read/361569/10045107
c 10elr10.c
#include "stdio.h"
#include "10elr1.c"
main()
{ int i,j;
void elr1f(double,double [],int,double []);
double y[3],z[3][11],t,h,x;
y[0]=-1.0; y[1]=0.0; y[2]=1.0;
t=0.0;
www.eeworm.com/read/165898/10047672
m eg10_10.m
fsamp=8000;
fcuts=[1000 1300 2210 2410];
mags=[0 1 0];
devs=[0.01 0.05 0.01];
[n,wn,beta,ftype]=kaiserord(fcuts,mags,devs,fsamp);
n=n+rem(n,2);
hh=fir1(n,wn,ftype,kaiser(n+1,beta),'noscale');
[
www.eeworm.com/read/165851/10049133
m program_10_10.m
% Program 10_10
% Frequency Responses of Tree-Structured QMF
% Filters
%
clf;
% Type in prototype lowpass filter coefficients
B1 = input('Filter coefficients = ');
B1 = [B1 fliplr(B1)];
% Gene
www.eeworm.com/read/360311/10103862
cpp c10-10.cpp
#include
using namespace std;
class Complex
{public:
Complex(){real=0;imag=0;}
Complex(double r){real=r;imag=0;}
Complex(double r,double i){real=r;imag=i;}
friend Comple
www.eeworm.com/read/360310/10104024
cpp l10_10.cpp
#include
# include
#include
class CRect
{
private:
char color[10];
int left;
int top;
int length;
int width;
public:
void SetColor(char *c);
void