Application Note Abstract This Application Note introduces a complete and detailed PSoC® project. Telephone Call Logger keeps the detailed record of approximately 945 phone calls (7-digit number is assumed to be one phone call) including date, start time and the duration of the phone call in the PSoC device. Users can get this detailed report into the PC environment by using free software, which is included in the project file. When records reach near full capacity of the Flash memory, an LED will turn on to show that it is necessary to backup the data. Software gets the data from PSoC, organizes it and prepares a printable version. Additionally, it sends the date and time information to the PSoC. The external parts in this project can be obtained easily in the market.
標(biāo)簽: Application Note introduces Abstract
上傳時(shí)間: 2014-01-01
上傳用戶(hù):集美慧
博客管理系統(tǒng)。安裝說(shuō)明: 1、在SQLSERVER中創(chuàng)建blog數(shù)據(jù)庫(kù)并創(chuàng)建登陸帳號(hào)blog:blog,然后在SQL Server查詢(xún)分析器中運(yùn)行doc目錄下db.sql創(chuàng)建所有表; 2、將工程導(dǎo)入Eclipse; 3、部署工程; 4、運(yùn)行tomcat; 5、進(jìn)入tomcat管理web后臺(tái), 在Tomcat->Service->Host->Context(blog)->Resources->Data Sources中添加 Data Source URL: jdbc:jtds:sqlserver://${dbhost}:1433 DatabaseName=blog JDBC Driver Class: net.sourceforge.jtds.jdbc.Driver User Name: blog Password: blog 6、done!
標(biāo)簽: blog SQLSERVER 博客 管理系統(tǒng)
上傳時(shí)間: 2013-12-14
上傳用戶(hù):蟲(chóng)蟲(chóng)蟲(chóng)蟲(chóng)蟲(chóng)蟲(chóng)
原始數(shù)據(jù)以Kiwi格式存儲(chǔ)在GTBL.dat的二進(jìn)制文件中,具體的文件格式請(qǐng)參照ReveseTableFormat.xls 中的“逆引表格式”sheet.-this procedure is the function of the navigation data of the road data collation, analysis. Kiwi to the original data stored in the format of the binary file GTBL.dat, specific file format ReveseTableFormat.xls Please refer to the "reverse primer format" sheet.
標(biāo)簽: Kiwi GTBL dat 數(shù)據(jù)
上傳時(shí)間: 2014-11-26
上傳用戶(hù):qweqweqwe
// chebysheve outlier detection // this function is used to detect the abnormal value among a set of data // input: // delta: a set of data // flag: discribe which data is already known as outlier // p: restrict level // output: // double[] door : byyond which the data may be considered as a outlier // door[0]: the upperdoor // door[1]: the lowerdoor
標(biāo)簽: chebysheve detection abnormal function
上傳時(shí)間: 2013-11-30
上傳用戶(hù):13517191407
Video-DVM is a very cheap DVM that shows how an output as complex as a videocomposite signal can be generated entirely in software: two I/O pins and three resistors are all the hardware required. Connected to any TV set it displays voltages, included max and min peaks, using both giant digits and an analog bar-display . A serial data output for computer data logging is provided, too.
標(biāo)簽: videocomposite Video-DVM complex output
上傳時(shí)間: 2014-12-09
上傳用戶(hù):xuan‘nian
添加BDE別名:paikedata 設(shè)置path:[存放位置]\paike\data (如:e:\paike\data) 運(yùn)行:f_ssgl.exe --★運(yùn)行說(shuō)明------------------------------------------------ 13 用戶(hù)名:nwn 密碼:j
標(biāo)簽: paikedata f_ssgl path BDE
上傳時(shí)間: 2017-06-12
上傳用戶(hù):talenthn
BP神經(jīng)網(wǎng)絡(luò)matlab源程序代碼 %% 該代碼為 BP 神經(jīng)網(wǎng)絡(luò)的預(yù)測(cè)代碼 % 清空環(huán)境變量 clc clear % %% 網(wǎng)絡(luò)結(jié)構(gòu)建立 % 讀取數(shù)據(jù) load data input output input=data(;,1;2;3;4;5); output=data(;,5); %節(jié)點(diǎn)個(gè)數(shù) %訓(xùn)練數(shù)據(jù)和預(yù)測(cè)數(shù)據(jù) %選連樣本輸入輸出數(shù)據(jù)歸一化 %構(gòu)建網(wǎng)絡(luò) net=newff(inputn,outputn,hiddennum); %網(wǎng)絡(luò)進(jìn)化參數(shù) %網(wǎng)絡(luò)訓(xùn)練 % 預(yù)測(cè)數(shù)據(jù)歸一化
標(biāo)簽: matlab BP神經(jīng)網(wǎng)絡(luò) 源程序 代碼
上傳時(shí)間: 2018-04-10
上傳用戶(hù):45808330
#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請(qǐng)輸入稀疏矩陣的行數(shù),列數(shù)和非零元素個(gè)數(shù)(用逗號(hào)隔開(kāi)):"); scanf("%d,%d,%d",&A.cols,&A.terms); for(int n=0;n<=A.terms-1;n++) { printf("\n\t\t輸入非零元素值(格式:行號(hào),列號(hào),值):"); scanf("%d,%d,%d",&A.data[n].i,&A.data[n].j,&A.data[n].v); } return A; } void ShowSparmatrix(sparmatrix A) { int k; printf("\n\t\t"); for(int x=0;x<=A.rows-1;x++) { for(int y=0;y<=A.cols-1;y++) { k=0; for(int n=0;n<=A.terms-1;n++) { if((A.data[n].i-1==x)&&(A.data[n].j-1==y)) { printf("%8d",A.data[n].v); k=1; } } if(k==0) printf("%8d",k); } printf("\n\t\t"); } } void sumsparmatrix(sparmatrix A) { SPNode *p; p=(SPNode*)malloc(sizeof(SPNode)); p->v=0; int k; k=0; printf("\n\t\t"); for(int x=0;x<=A.rows-1;x++) { for(int y=0;y<=A.cols-1;y++) { for(int n=0;n<=A.terms;n++) { if((A.data[n].i==x)&&(A.data[n].j==y)&&(x==y)) { p->v=p->v+A.data[n].v; k=1; } } } printf("\n\t\t"); } if(k==1) printf("\n\t\t對(duì)角線(xiàn)元素的和::%d\n",p->v); else printf("\n\t\t對(duì)角線(xiàn)元素的和為::0"); } int main() { int ch=1,choice; struct sparmatrix A; A.terms=0; while(ch) { printf("\n"); printf("\n\t\t 稀疏矩陣的三元組系統(tǒng) "); printf("\n\t\t*********************************"); printf("\n\t\t 1------------創(chuàng)建 "); printf("\n\t\t 2------------顯示 "); printf("\n\t\t 3------------求對(duì)角線(xiàn)元素和"); printf("\n\t\t 4------------返回 "); printf("\n\t\t*********************************"); printf("\n\t\t請(qǐng)選擇菜單號(hào)(0-3):"); scanf("%d",&choice); switch(choice) { case 1: A=CreateSparmatrix(); break; case 2: ShowSparmatrix(A); break; case 3: SumSparmatrix(A); break; default: system("cls"); printf("\n\t\t輸入錯(cuò)誤!請(qǐng)重新輸入!\n"); break; } if (choice==1||choice==2||choice==3) { printf("\n\t\t"); system("pause"); system("cls"); } else system("cls"); } }
上傳時(shí)間: 2020-06-11
上傳用戶(hù):ccccy
a XOR b> a,然后a XOR b< b,and both a and b are dependent data
標(biāo)簽: XOR and dependent both
上傳時(shí)間: 2014-01-27
上傳用戶(hù):yxgi5
Data Structures and Algorithms with Object-Oriented Design Patterns in Java Bruno R. Preiss B.A.Sc., M.A.Sc., Ph.D., P.Eng. Associate Professor Department of Electrical and Computer Engineering University of Waterloo, Waterloo, Canada
標(biāo)簽: B.A.S R. Object-Oriented Algorithms
上傳時(shí)間: 2017-03-07
上傳用戶(hù):z754970244
蟲(chóng)蟲(chóng)下載站版權(quán)所有 京ICP備2021023401號(hào)-1