ArcGIS在線教程數據源——map.rar
上傳時間: 2019-01-21
上傳用戶:chenxinglei
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.
上傳時間: 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;%質量 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('導數值'); title('Vxz'); grid on subplot(2,2,3) plot(x,Vzz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vzz'); grid on subplot(2,2,4); plot(x,Vzzz); xlabel('水平距離(m)'); ylabel('導數值'); 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('導數值'); title('Vxz'); grid on subplot(2,2,3) plot(x,Vzz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vzz'); grid on subplot(2,2,4); plot(x,Vzzz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vzzz'); grid on %% %垂直臺階 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('垂直臺階重力異常Δg'); grid on subplot(2,2,2) plot(x,Vxz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vxz'); grid on subplot(2,2,3) plot(x,Vzz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vzz'); grid on subplot(2,2,4); plot(x,Vzzz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vzzz'); grid on %% %傾斜臺階 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('傾斜臺階重力異常Δg'); grid on subplot(2,2,2) plot(x,Vxz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vxz'); grid on subplot(2,2,3) plot(x,Vzz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vzz'); grid on subplot(2,2,4); plot(x,Vzzz); xlabel('水平距離(m)'); ylabel('導數值'); 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('導數值'); title('Vxz'); grid on subplot(2,2,3) plot(x,Vzz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vzz'); grid on subplot(2,2,4); plot(x,Vzzz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vzzz'); grid on
上傳時間: 2019-05-10
上傳用戶:xiajiang
用于開發單片機的!!!超級單片機開發工具!!! 單片機開發過程中用到的多功能工具,包括熱敏電阻RT值--HEX數據轉換;3種LED編碼;色環電阻計算器;HEX/BIN 文件互相轉換;eeprom數據到C/ASM源碼轉換;CRC校驗生成;串口調試,帶簡單而實用的數據分析功能;串口/并口通訊監視等功能. 用C++ Builder開發,無須安裝,直接運行,不對注冊表進行操作。純綠色軟件。 詳細說明: 1、RT轉換:支持兩種電路,8/10位轉換精度,生成C/ASM源代碼格式的數據,可手工輸入數據或從文件中讀取,輸入的數據可以保存到文件中。文件格式為逗號分隔符: 溫度,阻值 2、LED編碼信息:可以支持 7段/14段/16段 LED,支持 C/ASM 語法,可生成 4/8 位編碼,4位編碼主要用于某些 LCD 驅動芯片。其中 7 段碼包括:0 -- F (Hex) 14 段碼包括:A -- Z, 0 -- F 16 段碼包括:A -- Z, 0 -- F 編碼方案可以保存供將來使用。 使用方法請點幫助。 3、色環電阻計算器功能。 4、HEX/BIN 文件相互轉換; HEX/BIN 轉換成 C/ASM 源代碼格式,適用于eeprom數據等處理。 加入CRC校驗碼生成功能。其中生成BIN文件時自動生成校驗碼,Get CRC 可生成任意文件的CRC碼。 另外還有相關知識、資料等。 5、串口調試具有 a. 基本通訊功能; b. 數據分析功能,可自定義通訊數據中的變量,包括變量名、變量類型(長度),顯示方式等; 內存映射功能中自定義變量的起始地址即內存起始地址,可自定義; 由map文件自動讀取內存變量(因條件所限,目前只支持由 ImageCraft C(ICC) 編譯器產生的map文件,歡迎提供其他編譯器的map文件樣本); 可自定義內存塊的起始/結束標志; 歷史數據保存功能; c. 交互式通訊, 主發時可自定義多命令自動循環發送; 從發時可定義接收到相應命令后的應答數據并自動應答; 6、串口監視功能 目前具有本功能的多為共享軟件,本軟件中沒有任何限制。 實時監視串口操作而不占用串口資源,可保存歷史數據,2k下測試通過,98下使用捕捉時可能會有點問題,沒有進行調試。 并口監視應該可以使用,沒有調試。 各種工具
標簽: 單片機
上傳時間: 2019-05-27
上傳用戶:小愛心早餐
vb寫的DNF外掛,采用DLL劫持方式。源碼直接可以編譯,默認為LOG.GLL,可以修改成其他名字放入DNF目錄,進入游戲即可使用。
上傳時間: 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.
標簽: Telecommunications Processing Signal for
上傳時間: 2020-06-01
上傳用戶:shancjb
MPU6050六軸傳感器模塊技術資料包括模塊原理圖+-STM32F1程序源碼+技術文檔資料:MPU-6000 & MPU-6050 寄存器表及其描述(中文版).pdfMPU-6000 & MPU-6050產品說明書(中文版).pdfMPU-6000 and MPU-6050 Product Specification.pdfMPU-6000 and MPU-6050 Register Map and Descriptions.pdfMPU6050六軸傳感器模塊程序PZ-MPU6050六軸傳感器模塊原理圖.pdfPZ-MPU6050六軸傳感器模塊開發手冊--普中STM32F1開發板.pdf叉積法融合陀螺和加速度核心程序詳解(圓點博士四軸).pdf姿態解算說明(Mini AHRS).pdf調試工具
上傳時間: 2021-10-15
上傳用戶:qdxqdxqdxqdx
Mathlab發行的圖形計算器應用于安卓設備的高品質顯示屏上,對用戶來說,計算更加清晰易懂且一目了然。這個程序有兩大優勢:首先,它不僅是一個精細的科學計算器,而且更重要的是,它在您輸入過程中顯示計算步驟,可以讓學生觀看和學習如何得出最終答案。第二,它的圖形顯示能力超乎尋常!不僅計算器顯示圖精美,而且會自動并顯示生成x和y的值。本軟件適用于Android平臺專業版的功能* 3D圖形* 全屏* 9的工作區域* 保存常量和函數庫* 不要求因特網* 沒有廣告科學計算器* 算術表達式 +, - ,*,/,÷* 平方根,立方和多次方根 (保持‘√’密鑰)* 指數,對數 (ln,log)* 三角函數sin π/2,cos 30°,...* 雙曲線函數:正弦,余弦,正切,...(按“e”鍵切換)* 反函數(按直接功能鍵)* 復數,所有功能都支持復數* 導數 sin x' = cos x,... (按 x^n 鍵)* 科學記數法(在菜單中啟用)* 百分比模式* 保存/載入歷史圖形計算器* 多種功能繪圖* 隱函數的第二度(橢圓 2x^2+3y^2=1,等等)* 極性圖 (r=cos2θ)* 參數函數,輸入新線 (x=cos t,y=sin t)* 功能根和交叉點的圖表,請點選的傳說開啟和關閉(左上角),使用菜單顯示為一個列表* 圖交叉口 (x^2=x+1)* 跟蹤函數值和斜坡* 滾動和縮放圖表* 捏放大* 橫向全屏圖* 函數表* 保存為圖像圖形* 表保存為 CSV分數計算器* 簡單和復雜的分數 1/2+1/3=5/6* 混合數字時,使用空格輸入值 3 1/2代數計算器* 線性方程 x+1=2 -> x=1* 二次方程 x^2-1= 0 -> x=-1,1* 較高多項式近似根* 系統線性方程組,每行寫一個方程式,x1+x2=1,x1-x2=2* 多項式長除法* 多項式展開,多項式展開,因式分解矩陣計算器* 矩陣和向量運算* 點擊點積 (按住*),多種功能的圖形* 行列式,逆,規范,移調,跟蹤庫自定義* 用戶定義的常量和函數* 保存/加載表達式
上傳時間: 2021-12-12
上傳用戶:XuVshu
ALIENTEK STM32H750核心板底板 PDF原理圖+AD集成封裝庫+主要器件技術手冊:集成封裝庫:3.5TFTLCD封裝庫.IntLibATK-4.3' TFTLCD電容觸摸屏模塊_V1.2.IntLibATK-4342 4.3寸RGB屏模塊封裝庫.IntLibATK-7016&7084 7寸RGB屏模塊封裝庫.IntLibATK-NEO-6M-V2.3.IntLibATK-OV2640攝像頭模塊.IntLibATK-OV5640攝像頭模塊封裝庫.IntLibATK-SIM900A GSM模塊封裝庫.IntLibMP3模塊封裝庫.IntLibOLED模塊封裝庫.IntLibSTM32H750核心板封裝庫STM32H750核心板封裝庫.IntLibSTM32F750&H750底板封裝庫STM32F750&H750底板封裝庫.IntLib主要器件手冊列表:3710FXXX037XXFX01.pdf3710MXXX046XXFX01.pdfAMS1117.pdfAP3216C.pdfAT24C02中文數據手冊.pdfAT8574_8574A_DS001V1.2.pdfCH340.pdfDHT11.pdfDS1820.pdfDS18B20.pdfES8388-DS.pdfES8388應用電路設計及PCB-LAYOUT注意事項.pdfET2046.pdfGT811.pdfGT9147數據手冊.pdfGT9147編程指南.pdfH27U4G8F2E(替代MT29F4G08).pdfICM20608 ProductSpec-V1.pdfICM20608 Register Map.pdfLAN8720A.pdfMD8002.pdfMP2144.pdfMP2359 AN.pdfMP2359.pdfMP3302_r0.98.pdfMT29F4G08ABADAWP.pdfnRF24L01P(新版無線模塊控制IC).PDFOTT2001A IIC協議指導.pdfOTT2001A_V02.pdfOV2640.pdfOV2640_DS(1.6).pdfOV5640_CSP3_DS_2.01_Ruisipusheng.pdfOV7670.pdfOV7670_英文.pdfPAM3101DAB28.pdfPCF8574.pdfPCF8574中文手冊.pdfRT9193.pdfSMBJ3.3-440_series.pdfSMBJ5.0ca.pdfSN74LVC1G00.pdfSP3232.pdfSP3485.pdfSTM32H750XBH6.pdfTJA1050.pdfW25Q256.pdfW25Q64JV.pdfW9825G6KH.pdfXPT2046.pdf
上傳時間: 2021-12-15
上傳用戶:
說明: 51單片機控制fm1702射頻讀卡芯片讀寫mifare1卡全套資料。包括電路圖,pcb板圖,上、下位機軟件及源碼,stc單片機下載軟件,各種資料文檔等。(51 SCM control fm1702 RF reader chip card reader mifare1 a full set of data. Including the circuit diagram, pcb board map, the upper and lower-bit machine software and source code, stc SCM download software, all kinds of information documentation.)
上傳時間: 2022-05-27
上傳用戶: