虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

LoG-map

  • ArcGIS在线教程数据源

    ArcGIS在线教程数据源——map.rar

    标签: ArcGIS 教程 数据源

    上传时间: 2019-01-21

    上传用户:chenxinglei

  • JAVA SMPP 源码

    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.

    标签: JAVA SMPP 源码

    上传时间: 2019-01-25

    上传用户:dragon_longer

  • 重力异常正演MATLAB程序

    %球体 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

    标签: MATLAB 重力 程序

    上传时间: 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劫持方式

    vb写的DNF外挂,采用DLL劫持方式。源码直接可以编译,默认为LOG.GLL,可以修改成其他名字放入DNF目录,进入游戏即可使用。

    标签: DNF DLL 方式

    上传时间: 2019-07-26

    上传用户:sdo999

  • Signal Processing for Telecommunications

    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

    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调试工具

    标签: mpu6050 传感器 mpu stm32

    上传时间: 2021-10-15

    上传用户:qdxqdxqdxqdx

  • 科学图形计算器 Mathlab 数学(专业版) v4.14.159

    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* 多项式长除法* 多项式展开,多项式展开,因式分解矩阵计算器* 矩阵和向量运算* 点击点积 (按住*),多种功能的图形* 行列式,逆,规范,移调,跟踪库自定义* 用户定义的常量和函数* 保存/加载表达式

    标签: 图形计算器 Mathlab

    上传时间: 2021-12-12

    上传用户:XuVshu

  • ALIENTEK STM32H750核心板底板 PDF原理图+AD集成封装库+主要器件技术手册: 集

    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

    标签: alientek stm32h750

    上传时间: 2021-12-15

    上传用户:

  • 51单片机控制fm1702射频读卡芯片读写mifa...

    说明:  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.)

    标签: 51单片机 fm1702 射频芯片

    上传时间: 2022-05-27

    上传用户: