利用UP-NETARM3000 嵌入式實驗平臺上的A/D轉換器、直流電機、LED和LCD模擬車輛的里程表盤系統。A/D轉換器模擬汽車的油門和變速系統;直流電機模擬汽車發動機;LED顯示車輛總里程數;LCD模擬當前車輛的速度
上傳時間: 2014-02-11
上傳用戶:qwe1234
采用NLJ隨機搜索的方法辨識一個以狀態方法表示的非線性系統。選其初值 a1(0) =50 , a2(0) =100 , a3(0) =100 , a4(0) =50 , a5(0) =10 , 選范圍為 r(1)(i)=0.5 a(0)(i) , 取數據長度 L =40, t =0.005 , 性能指標 J= 。迭代計算結果得 a 的估計值 1=17.6043243, 1=17.5977, 2=72.9573, 3=51.3014, 4=22.9889, 5=5.99965, J = 0.000000916 。
上傳時間: 2013-12-20
上傳用戶:weiwolkt
ADSL 接入技術已成為終端用戶最主要的寬帶接入技術。ADSL 技術的關鍵是ADSL 調制解調器,即ADSL MODEM。ADSL 用戶端調制解調器驅動器是一個寬頻帶功率放大器,他能不失真放大和傳輸電話線上已編碼的數字信號。 本文通過對ADSL 調制解調器驅動器特點、結構和性能的分析,給出了一種ADSL 用戶端MODEM 驅動器的實現電路。該 電路采用具有優良高頻的雙功率放大器L T1886 ,即使在配置高電平的閉環增益網絡后也能保持較低的失真。
上傳時間: 2016-10-26
上傳用戶:BIBI
本程序是在vagrant的升級程序上增加了SQL數據庫的更新升級功能系統中采用了ACCES來存儲數據更新的指令 從而達到逐步執行SQL代碼的功能,因為在SQL中要創建表、存儲過程、視圖等對象時,需要刪除原有老的對象,但是SQ L不支持將這些指令存放在一起從而導致出錯所以用ACCES來存儲數據了
上傳時間: 2016-10-30
上傳用戶:agent
使用國產CH341A芯片實現USB轉串口,完全兼容AVR JTAGICE,可以自動升級。 支持芯片: ATmega16(L), ATmega162(L), ATmega169(L or V), ATmega32(L), ATmega323(L), ATmega64(L), ATmega128(L). 原理圖還附加了RS232接口,可以方便用戶自主選擇串口或USB下載程序。 還附加有可自動升級的HEX文件
上傳時間: 2016-11-08
上傳用戶:hxy200501
The "GEE! It s Simple" package illustrates Gaussian elimination with partial pivoting, which produces a factorization of P*A into the product L*U where P is a permutation matrix, and L and U are lower and upper triangular, respectively. The functions in this package are accurate, but they are far slower than their MATLAB equivalents (x=A\b, [L,U,p]=lu(A), and so on). They are presented here merely to illustrate and educate. "Real" production code should use backslash and lu, not this package.
標簽: illustrates elimination Gaussian pivoting
上傳時間: 2016-11-09
上傳用戶:wang5829
The "GEE! It s Simple" package illustrates Gaussian elimination with partial pivoting, which produces a factorization of P*A into the product L*U where P is a permutation matrix, and L and U are lower and upper triangular, respectively. The functions in this package are accurate, but they are far slower than their MATLAB equivalents (x=A\b, [L,U,p]=lu(A), and so on). They are presented here merely to illustrate and educate. "Real" production code should use backslash and lu, not this package.
標簽: illustrates elimination Gaussian pivoting
上傳時間: 2014-01-21
上傳用戶:lxm
一個小的telnet程序與大家共享,/* 本程序支持如一些參數: * --host IP地址 或者 -H IP地址 * --port 端口 或者 -P 端口 * --back 監聽數量 或者 -B 監聽數量 * --dir 服務默認目錄 或者 -D 服務默認目錄 * --log 日志存放路徑 或者 -L 日志存放路徑 * --daemon 使程序進入后臺運行模式 */
上傳時間: 2016-11-20
上傳用戶:515414293
pstmt = conn.prepareStatement("select ordernumber,datetime,price,dayofmoney from zujie where ordernumber= "+ cdName + " ") rs=pstmt.executeQuery() if(rs!=null && rs.next()){ String datetime = rs.getString(2) java.text.SimpleDateFormat formatter = new java.text.SimpleDateFormat ("yyyy-MM-dd") Date date = new Date() String date1=formatter.format(date) ParsePosition pos = new ParsePosition(0) ParsePosition pos1 = new ParsePosition(0) Date dt1=formatter.parse(datetime,pos) Date dt2=formatter.parse(date1,pos1) Long l = (dt2.getTime()-dt1.getTime())/(3600*24*1000)+1 double price = rs.getDouble(3) double dayofmoney=rs.getDouble(4) double dayofmoneybuy=dayofmoney*l double otherMoney = price-dayofmoneybuy request.setAttribute("price", price) request.setAttribute("l", l) request.setAttribute("dayofmoney", dayofmoneybuy) request.setAttribute("otherMoney", otherMoney)
標簽: prepareStatement ordernumber dayofmoney datetime
上傳時間: 2013-12-14
上傳用戶:zsjinju
算術編碼是把一個信源表示為實軸上0和1之間的一個區間,信源集合中的每一個元素都用來縮短這個區間。 算術編碼的過程如下: (1)設定編碼區間的高段為h,編碼區間的長度為g,EndC為編碼字符分配的高段,StartC 為字符分配區間的低端。 (2)根據有限的信源估算出各元素的概率。 (3)杜宇編碼的元素A1,根據(2)估算的概率和區間,計算出該元素編碼后的新的l,和h。
上傳時間: 2014-01-26
上傳用戶:aysyzxzm