一 計(jì)量器具 1 傳感器 ARCM-NTC傳感器ARCM-NTC 直接作用于被測(cè)量,并能按一定規(guī)律將其轉(zhuǎn)換為同種或別種量值輸出的器件。 2 變送器 P/Q組合變送器BD-3P/Q/Ⅰ 輸出為標(biāo)準(zhǔn)信號(hào)的傳感器。 3 檢測(cè)器 用于指示某種特定量的存在而不必提供量值的器件或物質(zhì)。 4 電量隔離傳感器 在被測(cè)電量與輸出信號(hào)之間,采用非電媒體進(jìn)行隔離,把被測(cè)電量轉(zhuǎn)換成規(guī)定電信號(hào)的傳感器。 二 測(cè)量 1 被測(cè)量 受到測(cè)量的量。
標(biāo)簽: 電量傳感器
上傳時(shí)間: 2013-10-13
上傳用戶:z754970244
計(jì)算ARMA(p,q)模型的功率譜密度。 形參說(shuō)明: b——雙精度實(shí)型一維數(shù)組,長(zhǎng)度為(q+1),存放ARMA(p,q)模型的滑動(dòng)平均系數(shù)。 a——雙精度實(shí)型一維數(shù)組,長(zhǎng)度為(p+1),存放ARMA(p,q)模型的自回歸系數(shù)。 q——整型變量,ARMA(p,q)模型的滑動(dòng)平均階數(shù)。 p——整型變量,ARMA(p,q)模型的自回歸階數(shù)。 sigma2——雙精度實(shí)型變量,ARMA(p,q)模型白噪聲激勵(lì)的方差。 fs——雙精度實(shí)型變量,采樣頻率(Hz)。 x——雙精度實(shí)型一維數(shù)組,長(zhǎng)度為len。當(dāng)sign=0時(shí),存放功率譜密度;當(dāng)sign= 1時(shí),存放用分貝表示的功率譜密度。 freq——雙精度實(shí)型一維數(shù)組,長(zhǎng)度為len。存放功率譜密度所對(duì)應(yīng)的頻率。 len——整型變量,功率譜密度的數(shù)據(jù)點(diǎn)數(shù)。 sign——整型變量,當(dāng)sign=0時(shí),計(jì)算功率譜密度;當(dāng)sign=1時(shí),計(jì)算用分貝表 示的功率譜密度。
上傳時(shí)間: 2015-04-09
上傳用戶:qiao8960
,人們提出了“服務(wù)質(zhì)量”(Quality of Service,簡(jiǎn)稱(chēng)Q o S) 的概念。Q o S實(shí)際是一系列組件,允許對(duì)網(wǎng)上的數(shù)據(jù)進(jìn)行不同處理,并可為其分配不同的優(yōu) 先級(jí)。若一個(gè)網(wǎng)絡(luò)具備Q o S功能,便可根據(jù)實(shí)際需要,對(duì)其進(jìn)行配置
標(biāo)簽: Quality Service of 服務(wù)質(zhì)量
上傳時(shí)間: 2014-01-21
上傳用戶:奇奇奔奔
快速排序算法是基于分治策略的另一個(gè)排序算法。其基本思想是,對(duì)于輸入的字?jǐn)?shù)組a[p:r],按以下3個(gè)步驟進(jìn)行排序: (1)分解:以a[p]為基準(zhǔn)元素將a[p:r]劃分成3段a[p:q-1],a[q]和a[q+1:r],使得a[p:q-1]中任何元素小于等于a[q],a[q+1:r],中的任何元素大于等于a[q]。下標(biāo)q在劃分過(guò)程中確定 (2)遞歸求解:通過(guò)遞歸調(diào)用快速排序算法,分別對(duì)a[p:q-1]和a[q+1:r]進(jìn)行排序 (3)合并:在a[p:q-1]和a[q+1:r]已經(jīng)排好序的情況下,不需要執(zhí)行任何運(yùn)算,a[p:r]就已排好序 平均算法復(fù)雜度O(nlogn)
上傳時(shí)間: 2016-07-09
上傳用戶:wuyuying
RS_latch using vhdl, When using static gates as building blocks, the most fundamental latch is the simple SR latch, where S and R stand for set and reset. It can be constructed from a pair of cross-coupled NOR (Not OR) logic gates. The stored bit is present on the output marked Q. Normally, in storage mode, the S and R inputs are both low, and feedback maintains the Q and Q outputs in a constant state, with Q the complement of Q. If S (Set) is pulsed high while R is held low, then the Q output is forced high, and stays high when S returns to low similarly, if R (Reset) is pulsed high while S is held low, then the Q output is forced low, and stays low when R returns to low.
標(biāo)簽: using fundamental the RS_latch
上傳時(shí)間: 2017-07-30
上傳用戶:努力努力再努力
兩個(gè)鏈表的交集 #include<stdio.h> #include<stdlib.h> typedef struct Node{ int data; struct Node *next; }Node; void initpointer(struct Node *p){ p=NULL; } int printlist(struct Node* head){ int flag=1; head=head->next; /* 因?yàn)闃?biāo)記1的地方你用了頭結(jié)點(diǎn),所以第一個(gè)數(shù)據(jù)域無(wú)效,應(yīng)該從下一個(gè)頭元結(jié)點(diǎn)開(kāi)始 */ if(head==NULL) printf("NULL\n"); else { while(head!=NULL) { if(flag==1) { printf("%d",head->data); flag=0; } else { printf(" %d",head->data); } head=head->next; } printf("\n"); } return 0; } struct Node *creatlist(struct Node *head) { int n; struct Node *p1=(struct Node *)malloc(sizeof(struct Node)); p1->next=NULL; while(scanf("%d",&n),n!=-1) { struct Node *pnode=(struct Node *)malloc(sizeof(struct Node)); pnode->next=NULL; pnode->data=n; if(head==NULL) head=pnode; p1->next=pnode; p1=pnode; } return head; } struct Node *Intersect(struct Node *head1, struct Node *head2) { struct Node *p1=head1,*p2=head2;/*我這里沒(méi)有用頭指針和頭結(jié)點(diǎn),這里是首元結(jié)點(diǎn)head1里面就是第一個(gè)數(shù)據(jù),一定要理解什么事頭指針, 頭結(jié)點(diǎn),和首元結(jié)點(diǎn) 具體你一定要看這個(gè)博客:http://blog.sina.com.cn/s/blog_71e7e6fb0101lipz.html*/ struct Node *head,*p,*q; head = (struct Node *)malloc(sizeof(struct Node)); head->next = NULL; p = head; while( (p1!=NULL)&&(p2!=NULL) ) { if (p1->data == p2->data) { q = (struct Node *)malloc(sizeof(struct Node)); q->data = p1->data; q->next = NULL; p->next = q;//我可以認(rèn)為你這里用了頭結(jié)點(diǎn),也就是說(shuō)第一個(gè)數(shù)據(jù)域無(wú)效 **標(biāo)記1** p = q; p1 = p1->next; p2 = p2->next; } else if (p1->data < p2->data) { p1 = p1->next; } else { p2 = p2->next; } } return head; } int main() { struct Node *head=NULL,*headt=NULL,*t; //initpointer(head);//這里的函數(shù)相當(dāng)于head=NULL; // initpointer(headt);//上面已經(jīng)寫(xiě)了headt=NULL那么這里可以不用調(diào)用這個(gè)函數(shù) head=creatlist(head); headt=creatlist(headt); t=Intersect(head,headt); printlist(t); }
標(biāo)簽: c語(yǔ)言編程
上傳時(shí)間: 2015-04-27
上傳用戶:coco2017co
#include <stdio.h> #include <stdlib.h> ///鏈?zhǔn)綏?nbsp; typedef struct node { int data; struct node *next; }Node,*Linklist; Linklist Createlist() { Linklist p; Linklist h; int data1; scanf("%d",&data1); if(data1 != 0) { h = (Node *)malloc(sizeof(Node)); h->data = data1; h->next = NULL; } else if(data1 == 0) return NULL; scanf("%d",&data1); while(data1 != 0) { p = (Node *)malloc(sizeof(Node)); p -> data = data1; p -> next = h; h = p; scanf("%d",&data1); } return h; } void Outputlist(Node *head) { Linklist p; p = head; while(p != NULL ) { printf("%d ",p->data); p = p->next; } printf("\n"); } void Freelist(Node *head) { Node *p; Node *q = NULL; p = head; while(p != NULL) { q = p; p = p->next; free(q); } } int main() { Node *head; head = Createlist(); Outputlist(head); Freelist(head); return 0; } 2.順序棧 [cpp] view plain copy #include <iostream> #include <stdio.h> #include <stdlib.h> ///順序棧 #define MaxSize 100 using namespace std; typedef
標(biāo)簽: 數(shù)據(jù)結(jié)構(gòu) 實(shí)驗(yàn)
上傳時(shí)間: 2018-05-09
上傳用戶:123456..
實(shí)現(xiàn)利用8051單片機(jī)透過(guò)軟體I2C驅(qū)動(dòng)TSEM0108L感測(cè)器之程式庫(kù)
標(biāo)簽: 0108L 8051 0108 TSEM
上傳時(shí)間: 2016-11-06
上傳用戶:klin3139
Mifare RC500 非接觸式讀卡機(jī)驅(qū)動(dòng)程式碼 (Keil C/8051)
標(biāo)簽: Mifare Keil 8051 500
上傳時(shí)間: 2017-09-02
上傳用戶:笨小孩
Windows CE.Net 5.0 的相機(jī)驅(qū)動(dòng)程式原始碼,簡(jiǎn)單修改後可用!
上傳時(shí)間: 2013-12-24
上傳用戶:caixiaoxu26
蟲(chóng)蟲(chóng)下載站版權(quán)所有 京ICP備2021023401號(hào)-1