排序:上传时间 相关度 下载量 查看数

else 157

按分类查找:

  • pid教程

    pid控制 #ifndef _PID_H #ifndef _PID_H #ifdef _PID_C     #define PID_EXT #else     #define PID_EXT extern #endif typedef struct PID {     int SetPoint;          unsigned char BitMove;         &n ...

    /dl/520570.html

    标签: pid 教程

    上传时间: 2019-08-02

    上传用户:stcwzy

  • 能频值算法

    nx=length(x(:)); if nargin<2 || isempty(win)     win=nx; end if nargin<4 || isempty(m)     m=''; end nwin=length(win); if nwin == 1     lw = win;     w = ones(1,lw); else     lw = nwin;     w = win(:)'; end

    /dl/520781.html

    标签: 能频值

    上传时间: 2019-09-23

    上传用户:minwenji

  • C语言编写雅可比迭代

    # include<stdio.h> # include<math.h> # define N 3 main(){ &nbsp;&nbsp; &nbsp;float NF2(float *x,float *y); &nbsp;&nbsp; &nbsp;float A[N][N]={{10,-1,-2},{-1,10,-2},{-1,-1,5}}; &nbsp;&nbsp; &nbsp;float b[N]={7.2,8.3,4.2},sum=0; &nbsp;&nbsp; &nbsp;float x[N]= {0,0,0},y[N]={0},x0[N]={}; &nbsp;&nbsp; &n ...

    /dl/520831.html

    标签: C语言 编写 迭代

    上传时间: 2019-10-13

    上传用户:大萌萌撒

  • python爬虫获取大量免费有效代理ip--有效防止ip被封

    以后再也不用担心写爬虫ip被封,不用担心没钱买代理ip的烦恼了 在使用python写爬虫时候,你会遇到所要爬取的网站有反爬取技术比如用同一个IP反复爬取同一个网页,很可能会被封。如何有效的解决这个问题呢?我们可以使用代理ip,来设置代理ip池。 现在教大家一个可获取大量免费有效快速的代理ip方法,我们访问西刺免费代理i ...

    /dl/520997.html

    标签: python ip 代理 防止

    上传时间: 2019-11-15

    上传用户:fygwz1982

  • 多元散射校正MSC

    function [R,k,b] = msc(A) % 多元散射校正 % 输入待处理矩阵,通过多元散射校正,求得校正后的矩阵 %% 获得矩阵行列数 [m,n] = size(A); %% 求平均光谱 M = mean(A,2); %% 利用最小二乘法求每一列的斜率k和截距b for i = 1:n a = polyfit(M,A(:,i),1); if i == 1 k = a(1); b = a(2); ...

    /dl/521313.html

    标签: MSC 多元 散射 校正

    上传时间: 2020-03-12

    上传用户:15275387185

  • Data Warehousing and Data Mining

    W abooklikethistogether,manypeoplewhoneverhope to see their namesinprint get involved and provide alot of help. I wouldliketogivecreditwherecreditisdueandacknowledgethose people here. Firstandforemost,atleasthalfofthecreditforthisbookneedstogotomy wife,BrigitteKilger-Mattison. Brig ...

    /dl/521863.html

    标签: Data Warehousing Mining and

    上传时间: 2020-05-27

    上传用户:shancjb

  • Fundamentals+of+WiMAX+Understanding

    Fundamentals of WiMAX was consciously written to appeal to a broad audience, and to be of value to anyone who is interested in the IEEE 802.16e standards or wireless broadband networks more generally. The book contains cutting-edge tutorials on the technical and theoretical under- pinnings to WiMAX ...

    /dl/521910.html

    标签: Understanding Fundamentals WiMAX of

    上传时间: 2020-05-27

    上传用户:shancjb

  • 二叉树子系统

    #include<stdio.h> #define TREEMAX 100 typedef struct&nbsp; BT { char data; BT *lchild; BT *rchild; }BT; BT *CreateTree(); void Preorder(BT *T); void Postorder(BT *T); void Inorder(BT *T); void Leafnum(BT *T); void Nodenum(BT *T); int TreeDepth(BT *T); int count=0; void main() { BT *T=NULL; char ...

    /dl/522520.html

    标签: 二叉树 子系统

    上传时间: 2020-06-11

    上传用户:ccccy

  • 数组子系统

    #include <stdio.h> #include <stdlib.h> #define SMAX 100 typedef struct SPNode { int i,j,v; }SPNode; struct sparmatrix { int rows,cols,terms; SPNode data [SMAX]; }; sparmatrix CreateSparmatrix() { sparmatrix A; printf("\n\t\t请输入稀疏矩阵的行数,列数和非零元素个数(用逗号隔开):"); scanf("%d, ...

    /dl/522521.html

    标签: 数组 子系统

    上传时间: 2020-06-11

    上传用户:ccccy

  • 编译原理实验课程设计

    对PL/0作以下修改和扩充,并使用测试用例验证: (1)修改单词:不等号# 改为 != ,只有!符号为非法单词,同时#成为非法 符号。 (2)增加单词(只实现词法分析部分): 保留字 ELSE,FOR,STEP,UNTIL,DO,RETURN 运算符 *=(TIMESBECOMES),/=(SLASHBECOMES),&(AND),||(OR) 注释符 //(NOTE) ...

    /dl/522673.html

    标签: 源码 实验报告

    上传时间: 2020-06-30

    上传用户:12345a