代码搜索:10 是什么?
找到约 10,000 项符合「10 是什么?」的源代码
代码结果 10,000
www.eeworm.com/read/425971/10300324
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/161995/10348588
m f10_10.m
%装载采集的信号leleccum.mat
load leleccum;
%将信号中第3600到第3700个采样点赋给s
index=1575:1720;
s=leleccum(index);
%画出原始信号
figure(1);
plot(index,s);
xlabel('样本序号 n');
ylabel('幅值 A');
%用db3小波进行5层分解
[c,l]=waved
www.eeworm.com/read/425287/10365712
m f10_10.m
%装载采集的信号leleccum.mat
load leleccum;
%将信号中第3600到第3700个采样点赋给s
index=1575:1720;
s=leleccum(index);
%画出原始信号
figure(1);
plot(index,s);
xlabel('样本序号 n');
ylabel('幅值 A');
%用db3小波进行5层分解
[c,l]=waved
www.eeworm.com/read/279355/10444647
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/279355/10444752
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/423959/10513264
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/352747/10518938
cpp alg10-10.cpp
// alg10-10.cpp 归并排序,包括算法10.12~10.14
#include
typedef int InfoType; // 定义其它数据项的类型
#include"c9-7.h"
#include"c10-1.h"
void Merge(RedType SR[],RedType TR[],int i,int m,int n)
{ /
www.eeworm.com/read/352747/10519749
c alg10-10.c
/* alg10-10.c 归并排序,包括算法10.12~10.14 */
#include
typedef int InfoType; /* 定义其它数据项的类型 */
#include"c9-7.h"
#include"c10-1.h"
void Merge(RedType SR[],RedType TR[],int i,int m,int n)
www.eeworm.com/read/160256/10548281
m example10_10.m
I1= imread('circles.tif');
imshow(I1);
I2 = bwmorph(I1,'skel',Inf);
imshow(I2)
I3= bwmorph(I1,'thin',Inf);
imshow(I3)
www.eeworm.com/read/160251/10549395
m 例程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