電信計(jì)費(fèi)項(xiàng)目 該系統(tǒng)在Sun Solaris下開發(fā),運(yùn)行于Apache Tomcat平臺(tái),采用J2EE架構(gòu),基于Struts、Hibernate、Spring技術(shù)或EJB組件技術(shù)以及Oracle 9i數(shù)據(jù)庫系統(tǒng)。該系統(tǒng)后臺(tái)主要由數(shù)據(jù)采集系統(tǒng)和數(shù)據(jù)整合系統(tǒng)提供支持,前臺(tái)部分主要分為用戶自服務(wù)管理,資費(fèi)管理,用戶管理,管理員管理,帳單管理,帳務(wù)管理6個(gè)模塊。 該系統(tǒng)后臺(tái)部分包括數(shù)據(jù)采集系統(tǒng)(包括采集模塊和接受模塊)和數(shù)據(jù)整合系統(tǒng);它們實(shí)現(xiàn)的功能是:1.定期采集(次/小時(shí))原始計(jì)費(fèi)Log(wtmpx)文件,整理成BIDR數(shù)據(jù)清單,并上傳給中心處理系統(tǒng)。2.中心處理系統(tǒng)(接收模塊)偵聽并收集采集系統(tǒng)發(fā)送的數(shù)據(jù)信息BIDR,并通過PROC將數(shù)據(jù)保存到數(shù)據(jù)庫明細(xì)表t_detail_X中,在發(fā)送和接受過程中主要采用Unix C/C++(socket)實(shí)現(xiàn)。3.通過t_detail_X表完成天整合表t_day_X,月整合表t_month_X,年整合表t_year_X的實(shí)現(xiàn)。
標(biāo)簽: Solaris Apache Tomcat J2EE
上傳時(shí)間: 2013-12-02
上傳用戶:a6697238
Description Scientific calculator. Allows to perform caclulation with high precicion and implements most populatr mathematical functions: sin, cos, tan, asin, acon, atan, exp, Log, sqr, floor and ceil. Also it make it possible to define your own function, store results in variables and use variable sin expressions. Calculator store al formuls you have entered. Plot function can be used to draw graph of function with single argument. More detailed description of calculator is here.
標(biāo)簽: Description caclulation Scientific calculator
上傳時(shí)間: 2014-01-25
上傳用戶:familiarsmile
用Quartus II 8.0(32bit),NIOS編譯環(huán)境下,用TFT做的一個(gè)數(shù)碼相框,附加原理圖和veri-Log程序代碼
上傳時(shí)間: 2017-09-17
上傳用戶:shinesyh
turbo仿真的matlab源代碼,可以選擇是否進(jìn)行刪余,Log-map,sova等編碼形式
上傳時(shí)間: 2017-04-24
上傳用戶:wanmorelove
Introduction jSMPP is a java implementation (SMPP API) of the SMPP protocol (currently supports SMPP v3.4). It provides interfaces to communicate with a Message Center or an ESME (External Short Message Entity) and is able to handle traffic of 3000-5000 messages per second. jSMPP is not a high-level library. People looking for a quick way to get started with SMPP may be better of using an abstraction layer such as the Apache Camel SMPP component: http://camel.apache.org/smpp.html Travis-CI status: History The project started on Google Code: http://code.google.com/p/jsmpp/ It was maintained by uudashr on Github until 2013. It is now a community project maintained at http://jsmpp.org Release procedure mvn deploy -DperformRelease=true -Durl=https://oss.sonatype.org/service/local/staging/deploy/maven2/ -DrepositoryId=sonatype-nexus-staging -Dgpg.passphrase=<yourpassphrase> Log in here: https://oss.sonatype.org click the 'Staging Repositories' link select the repository and click close select the repository and click release License Copyright (C) 2007-2013, Nuruddin Ashr uudashr@gmail.com Copyright (C) 2012-2013, Denis Kostousov denis.kostousov@gmail.com Copyright (C) 2014, Daniel Pocock http://danielpocock.com Copyright (C) 2016, Pim Moerenhout pim.moerenhout@gmail.com This project is licensed under the Apache Software License 2.0.
上傳時(shí)間: 2019-01-25
上傳用戶:dragon_longer
%球體 close all; G=6.67e-11; R=2;%球體半徑 p=4.0;%密度 D=10.0;%深度 M=(4/3)*pi*R^3*p;%質(zhì)量 x=-20:1:20; g=G*M*D./((x.^2+D^2).^(3/2)); Vxz=-3*G*M*D.*x./((x.^2+D^2).^(5/2)); Vzz=G*M.*(2*D^2-x.^2)./((x.^2+D^2).^(5/2)); Vzzz=3*G*M.*(2*D^2-3.*x.^2)./((x.^2+D^2).^(7/2)); subplot(2,2,1) plot(x,g,'k-'); xlabel('水平距離(m)'); ylabel('重力異常值'); title('球體重力異常Δg'); grid on subplot(2,2,2) plot(x,Vxz); xlabel('水平距離(m)'); ylabel('導(dǎo)數(shù)值'); title('Vxz'); grid on subplot(2,2,3) plot(x,Vzz); xlabel('水平距離(m)'); ylabel('導(dǎo)數(shù)值'); title('Vzz'); grid on subplot(2,2,4); plot(x,Vzzz); xlabel('水平距離(m)'); ylabel('導(dǎo)數(shù)值'); title('Vzzz'); grid on %% %水平圓柱體 close all G=6.67e-11; p=10.0;%線密度 D=100.0;%深度 x=-200:1:200; g=G*2*p*D./(x.^2+D^2); Vxz=4*G*p*D.*x./(x.^2+D^2).^2; Vzz=2*G*p.*(D^2-x.^2)./(x.^2+D^2).^2; Vzzz=4*G*p.*(D^2-3.*x.^2)./((x.^2+D^2).^3); subplot(2,2,1) plot(x,g,'k-'); xlabel('水平距離(m)'); ylabel('重力異常值'); title('水平圓柱體重力異常Δg'); grid on subplot(2,2,2) plot(x,Vxz); xlabel('水平距離(m)'); ylabel('導(dǎo)數(shù)值'); title('Vxz'); grid on subplot(2,2,3) plot(x,Vzz); xlabel('水平距離(m)'); ylabel('導(dǎo)數(shù)值'); title('Vzz'); grid on subplot(2,2,4); plot(x,Vzzz); xlabel('水平距離(m)'); ylabel('導(dǎo)數(shù)值'); title('Vzzz'); grid on %% %垂直臺(tái)階 G=6.67e-11; p=4.0;%密度 h1=50.0;%下層深度 h2=40.0;%上層深度 x=-100:1:100; g=G*p.*(pi*(h1-h2)+x.*Log((x.^2+h1^2)./(x.^2+h2^2))+2*h1.*atan(x./h1)-2*h2.*atan(x./h2)); Vxz=G*p.*Log((h1^2+x.^2)./(h2^2+x.^2)); Vzz=2*G*p.*atan((x.*(h1-h2))./(x.^2+h1*h2)); Vzzz=2*G*p.*x*(h1^2-h2^2)./((h1^2+x.^2).*(x.^2+h2^2)); subplot(2,2,1) plot(x,g,'k-'); xlabel('水平距離(m)'); ylabel('重力異常值'); title('垂直臺(tái)階重力異常Δg'); grid on subplot(2,2,2) plot(x,Vxz); xlabel('水平距離(m)'); ylabel('導(dǎo)數(shù)值'); title('Vxz'); grid on subplot(2,2,3) plot(x,Vzz); xlabel('水平距離(m)'); ylabel('導(dǎo)數(shù)值'); title('Vzz'); grid on subplot(2,2,4); plot(x,Vzzz); xlabel('水平距離(m)'); ylabel('導(dǎo)數(shù)值'); title('Vzzz'); grid on %% %傾斜臺(tái)階 G=6.67e-11; p=4.0;%密度 h1=50.0;%下層深度 h2=40.0;%上層深度 a=pi/6;%傾斜角度 x=-500:1:500; g=G*p.*(pi*(h1-h2)+2*h1.*atan((x+h1*cot(a))./h1)-2*h2.*atan((x+h2*cot(a))./h1)+x.*sin(a)^2.*Log(((h1+x.*sin(a).*cos(a)).^2+x.^2.*sin(a)^4)./((h2+x.*(sin(a)*cos(a))).^2+x.^2.*sin(a)^4))); Vxz=G*p.*(sin(a)^2.*Log(((h1*cot(a)+x).^2+h1^2)./((h2*cot(a)+x).^2+h2^2))-2*sin(2*a).*(atan((h1/sin(a)+x.*cos(a))./(x.*sin(a)))-atan((h2/sin(a)+x.^cos(a))./(sin(a).*x)))); Vzz=G*p.*(0.5*sin(2*a)^2.*Log(((h1*cot(a)+x).^2+h1^2)./((h2*cot(a)+x).^2+h2^2))+2*sin(a)^2.*(atan((h1/sin(a)+x.*cos(a))./(x.*sin(a)))-atan((h2/sin(a)+x.*cos(a))./(x.*sin(a))))); Vzzz=2*G*p*sin(a)^2.*((x+2*h2*cot(a))./((h2*cot(a)+x).^2+h2^2)-(x+2*h1*cot(a))./((h1*cot(a)+x).^2+h1^2)); subplot(2,2,1) plot(x,g,'k-'); xlabel('水平距離(m)'); ylabel('重力異常值'); title('傾斜臺(tái)階重力異常Δg'); grid on subplot(2,2,2) plot(x,Vxz); xlabel('水平距離(m)'); ylabel('導(dǎo)數(shù)值'); title('Vxz'); grid on subplot(2,2,3) plot(x,Vzz); xlabel('水平距離(m)'); ylabel('導(dǎo)數(shù)值'); title('Vzz'); grid on subplot(2,2,4); plot(x,Vzzz); xlabel('水平距離(m)'); ylabel('導(dǎo)數(shù)值'); title('Vzzz'); grid on %% %鉛錘柱體 G=6.67e-11; p=4.0;%密度 h1=50.0;%下層深度 h2=40.0;%上層深度 a=3;%半徑 x=-500:1:500; g=G*p.*((x+a).*Log(((x+a).^2+h1^2)./((x+a).^2+h2^2))-(x-a).*Log(((x-a).^2+h1^2)./((x-a).^2+h2^2))+2*h1.*(atan((x+a)./h1)-atan((x-a)./h1))-2*h2.*(atan((x+a)./h2)-atan((x-a)./h2))); Vxz=G*p.*Log((((x+a).^2+h1^2).*((x-a).^2+h2^2))./(((x+a).^2+h2^2).*((x-a).^2+h1^2))); Vzz=2*G*p.*(atan(h1./(x+a))-atan(h2./(x+a))-atan(h1./(x-a))+atan(h2./(x-a))); Vzzz=2*G*p.*((x+a)./((x+a).^2+h2^2)-(x+a)./((x+a).^2+h1^2)-(x-a)./((x-a).^2+h2^2)+(x-a)./((x-a).^2+h1^2)); subplot(2,2,1) plot(x,g,'k-'); xlabel('水平距離/m') ylabel('重力異常值') title('鉛垂柱體重力異常') grid on subplot(2,2,2) plot(x,Vxz); xlabel('水平距離(m)'); ylabel('導(dǎo)數(shù)值'); title('Vxz'); grid on subplot(2,2,3) plot(x,Vzz); xlabel('水平距離(m)'); ylabel('導(dǎo)數(shù)值'); title('Vzz'); grid on subplot(2,2,4); plot(x,Vzzz); xlabel('水平距離(m)'); ylabel('導(dǎo)數(shù)值'); title('Vzzz'); grid on
上傳時(shí)間: 2019-05-10
上傳用戶:xiajiang
vb寫的DNF外掛,采用DLL劫持方式。源碼直接可以編譯,默認(rèn)為Log.GLL,可以修改成其他名字放入DNF目錄,進(jìn)入游戲即可使用。
上傳時(shí)間: 2019-07-26
上傳用戶:sdo999
This paper presents a Hidden Markov Model (HMM)-based speech enhancement method, aiming at reducing non-stationary noise from speech signals. The system is based on the assumption that the speech and the noise are additive and uncorrelated. Cepstral features are used to extract statistical information from both the speech and the noise. A-priori statistical information is collected from long training sequences into ergodic hidden Markov models. Given the ergodic models for the speech and the noise, a compensated speech-noise model is created by means of parallel model combination, using a Log-normal approximation. During the compensation, the mean of every mixture in the speech and noise model is stored. The stored means are then used in the enhancement process to create the most likely speech and noise power spectral distributions using the forward algorithm combined with mixture probability. The distributions are used to generate a Wiener filter for every observation. The paper includes a performance evaluation of the speech enhancer for stationary as well as non-stationary noise environment.
標(biāo)簽: Telecommunications Processing Signal for
上傳時(shí)間: 2020-06-01
上傳用戶:shancjb
Mathlab發(fā)行的圖形計(jì)算器應(yīng)用于安卓設(shè)備的高品質(zhì)顯示屏上,對(duì)用戶來說,計(jì)算更加清晰易懂且一目了然。這個(gè)程序有兩大優(yōu)勢(shì):首先,它不僅是一個(gè)精細(xì)的科學(xué)計(jì)算器,而且更重要的是,它在您輸入過程中顯示計(jì)算步驟,可以讓學(xué)生觀看和學(xué)習(xí)如何得出最終答案。第二,它的圖形顯示能力超乎尋常!不僅計(jì)算器顯示圖精美,而且會(huì)自動(dòng)并顯示生成x和y的值。本軟件適用于Android平臺(tái)專業(yè)版的功能* 3D圖形* 全屏* 9的工作區(qū)域* 保存常量和函數(shù)庫* 不要求因特網(wǎng)* 沒有廣告科學(xué)計(jì)算器* 算術(shù)表達(dá)式 +, - ,*,/,÷* 平方根,立方和多次方根 (保持‘√’密鑰)* 指數(shù),對(duì)數(shù) (ln,Log)* 三角函數(shù)sin π/2,cos 30°,...* 雙曲線函數(shù):正弦,余弦,正切,...(按“e”鍵切換)* 反函數(shù)(按直接功能鍵)* 復(fù)數(shù),所有功能都支持復(fù)數(shù)* 導(dǎo)數(shù) sin x' = cos x,... (按 x^n 鍵)* 科學(xué)記數(shù)法(在菜單中啟用)* 百分比模式* 保存/載入歷史圖形計(jì)算器* 多種功能繪圖* 隱函數(shù)的第二度(橢圓 2x^2+3y^2=1,等等)* 極性圖 (r=cos2θ)* 參數(shù)函數(shù),輸入新線 (x=cos t,y=sin t)* 功能根和交叉點(diǎn)的圖表,請(qǐng)點(diǎn)選的傳說開啟和關(guān)閉(左上角),使用菜單顯示為一個(gè)列表* 圖交叉口 (x^2=x+1)* 跟蹤函數(shù)值和斜坡* 滾動(dòng)和縮放圖表* 捏放大* 橫向全屏圖* 函數(shù)表* 保存為圖像圖形* 表保存為 CSV分?jǐn)?shù)計(jì)算器* 簡(jiǎn)單和復(fù)雜的分?jǐn)?shù) 1/2+1/3=5/6* 混合數(shù)字時(shí),使用空格輸入值 3 1/2代數(shù)計(jì)算器* 線性方程 x+1=2 -> x=1* 二次方程 x^2-1= 0 -> x=-1,1* 較高多項(xiàng)式近似根* 系統(tǒng)線性方程組,每行寫一個(gè)方程式,x1+x2=1,x1-x2=2* 多項(xiàng)式長(zhǎng)除法* 多項(xiàng)式展開,多項(xiàng)式展開,因式分解矩陣計(jì)算器* 矩陣和向量運(yùn)算* 點(diǎn)擊點(diǎn)積 (按住*),多種功能的圖形* 行列式,逆,規(guī)范,移調(diào),跟蹤庫自定義* 用戶定義的常量和函數(shù)* 保存/加載表達(dá)式
上傳時(shí)間: 2021-12-12
上傳用戶:XuVshu
該文件是器件官方元件封裝的文件,用cadence,打開后綴為bxl的文件。 下載的Ultra Librarian 軟件; Ultra Librarian提供了一個(gè)基于云的庫,該庫中有超過 8 百萬種符號(hào)、封裝,以及帶有供貨商 ECAD 中性數(shù)據(jù)輸出選擇的 3D 模型。該庫以業(yè)內(nèi)最大的 ECAD 元器件庫為后盾,代表了 400 多家制造商。輕松找到您所需的零件,導(dǎo)出至 22 種不同的 CAD 工具。該庫每天更新,為您提供滿足 PCB 設(shè)計(jì)需求的最準(zhǔn)確零件。 打開 Ultra Librarian軟件,導(dǎo)入bxl后綴文件,選擇需要轉(zhuǎn)換的文件類型,最后導(dǎo)出文件。 然后就可以用cadence或者AD打開該庫。該文件生成edf和cfg文件。 再用orcad capture cis軟件打開,file>import design >edif> open(edf) configation(cfg)然后就可以生成dns工程,就會(huì)在目標(biāo)路徑下產(chǎn)生olb和obk文件,是原理圖文件,可以用orcad capture cis軟件打開。 附加導(dǎo)入Altium Designer:首先,按照所給鏈接下載ULib文件,解壓,并將解壓后的文件安裝。打開桌面上的Ultra應(yīng)用程序。打開后彈出一個(gè)對(duì)話框,選擇繼續(xù)免費(fèi)使用。然后彈出主程序窗口,在步驟一里面加載我們需要轉(zhuǎn)換的BXL文件。并且在下面選擇Altium designer,。選擇步驟三的export to selected tools ,并生成一個(gè)Log.txt文件。用AD打開剛生成的UL_Import.PrjScr文件,。打開工程文件后,并將鼠標(biāo)光標(biāo)移動(dòng)到UL_Import.Pas文件下且選中。點(diǎn)擊箭頭所指運(yùn)行按鈕。在彈出的對(duì)話框UL Import下,選擇剛生成的Log.txt文件。最后點(diǎn)擊輸出start import按鈕,即可把bxl庫文件轉(zhuǎn)換為AD封裝庫文件。生成的庫文件。
上傳時(shí)間: 2022-06-01
上傳用戶:xsr1983
蟲蟲下載站版權(quán)所有 京ICP備2021023401號(hào)-1