MATFOR FFT Visual Fortran program. MATFOR Extensions, as implied in the name, are data or components external to MATFOR modules that can be used to add versatility to MATFOR programs. Currently there are two types of extensions available with MATFOR, they are MATLAB Interface and Tecplot FileIO. MATLAB Interface, a new feature in MATFOR 4.1, provides MATFOR users access to MATLAB functions so they can obtain functionality that has not been built into MATFOR. The ability of using MATLAB functions makes MATFOR an ideal tool for those who create prototypes using MATLAB, then do implementation in C++ and other programming languages. Through the use of MATFOR, users may perform quick results comparisons between MATLAB and other languages.
標簽: MATFOR Extensions component Fortran
上傳時間: 2013-12-11
上傳用戶:xieguodong1234
Coaxial feed structures are widely used in ultra-wide band antennas . This paper modeled the characteristic of the monopole antenna feeded by coaxial line by FDTD in the time-domiain,which showes that . Firstly, it introduced the theory of the arithmetic and the particularly realization in the calculation then it described the use in the time-domain finally it analysed several characteristics of the monopole antenna. The arithmetic used in the microstrip antenna is also a quick and economical way to design the antenna.
標簽: structures ultra-wide antennas Coaxial
上傳時間: 2016-06-28
上傳用戶:朗朗乾坤
新聞 網頁 貼吧 知道 MP3 圖片 視頻 幫助 | 高級搜索 把百度設為主頁 百度一下,找到相關網頁165篇,用時0.050秒 Book Switzerland Hotels .. HRS, Over 230,000 hotels worldwide, Real time prices and av.. www.HRS.com 中國quick Book 速達軟件 速達軟件是全球最大的中小企業管理軟件品牌quickbooks家族的中.. www.shsuda.cn 上海索迪IBM大學生sql編程.. 政府授牌-索迪IBM封閉式軟件實訓基地,與千家IT企業簽訂人才服務.. www.hroso.com 上海it編程工程師培訓 NII.. NIIT是全球領先的IT學習解決方案公司,擁有近500萬注冊學生及33.. www.sh-niit.cn java語言編程培訓 首選上.. 上海達內外企軟件工程師定向委培.近萬名學員成功就業IBM,HP,華.. www.51tarena.com 上海游戲開發編程培訓 高.. 上海游戲學院是一家致力于培養游戲開發與設計人才的專業機構.開.. www.gamfe.com 加工中心編程培訓 大型數控機床培訓基地,加工中心編程培訓.本校憑承“優師資,嚴管.. www.tcskpx.com 上海php編程培訓, 助您年.. 上海最早最大php編程培訓中心,學費僅需付六成,可申請先就業后付.. www.wenhua.com 找tale book 源代碼
上傳時間: 2017-03-10
上傳用戶:2467478207
A order algoritm comparison by the C time(). Comparison beetwen : insort,selection sort,mergesort,and quick sort. Read the source, and the usage after compiling . Enjoy it!
標簽: Comparison comparison mergesort selection
上傳時間: 2014-01-06
上傳用戶:qazxsw
51 single-chip implementation using a simple four-way program design Answer A total of single-chip quick Start
標簽: implementation single-chip four-way single-c
上傳時間: 2017-04-21
上傳用戶:xinyuzhiqiwuwu
This book introduces the powerful programming tools provided in your Microsoft Visual C++ compiler package. These include the compiler, debugger, and various Windows 95, 98, and NT development tools. This book compliments your Microsoft reference manuals and online help to provide a quick start with each of the components in the compiler package.
標簽: programming introduces Microsoft compiler
上傳時間: 2013-12-11
上傳用戶:源弋弋
quickSteps books are recipe books for computer users. They answer the question 揌ow do I...??by providing a quick set of steps to accomplish the most common tasks with a particular program. The sets of steps are the central focus of the book. Sidebar quickSteps provide information on how to do quickly many small functions or tasks that are in support of the primary functions. Sidebar quickFacts supply information that you need to know about a subject. Notes, Tips, and Cautions augment the steps, but they are presented in a separate column to not interrupt the fl ow. Brief introductions are present, but there is minimal narrative otherwise. Many illustrations and fi gures, a number with callouts, are also included where they support the steps.
標簽: books quickSteps computer question
上傳時間: 2013-12-11
上傳用戶:ljt101007
Java技術手冊(第五版)(中文版)原書共一千兩百余頁,分為兩大部分:第一部分為涵蓋入門介紹、語法、面向對象程序設計、Java平臺、安全性、程序設計與文檔制作習慣、開發工具等章節的“Introducing Java”,秉承著作者David Flanagan一貫的言簡意賅的風格,精要的文字能夠讓讀者以更少的時間獲得更多的收獲;第二部分“API quick Reference”占原書約三分之二的篇幅。考慮過一般開發者的習慣與查詢便利性之后,為減輕讀者書本重量上的負擔以及購買的成本,中文譯本已將與在線說明文檔重疊的“API quick Reference”部分刪減。 《Java技術手冊》(《Java in a Nutshell》)系列曾經榮獲Jolt Award獎項,是一本有口皆碑的Java經典暢銷書,歷年來有許多程序員都是以閱讀此書開始進入Java程序設計的殿堂的。
上傳時間: 2017-08-21
上傳用戶:gengxiaochao
matlab有限元網格劃分程序 DistMesh is a simple MATLAB code for generation of unstructured triangular and tetrahedral meshes. It was developed by Per-Olof Persson (now at UC Berkeley) and Gilbert Strang in the Department of Mathematics at MIT. A detailed description of the program is provided in our SIAM Review paper, see documentation below. One reason that the code is short and simple is that the geometries are specified by Signed Distance Functions. These give the shortest distance from any point in space to the boundary of the domain. The sign is negative inside the region and positive outside. A simple example is the unit circle in 2-D, which has the distance function d=r-1, where r is the distance from the origin. For more complicated geometries the distance function can be computed by interpolation between values on a grid, a common representation for level set methods. For the actual mesh generation, DistMesh uses the Delaunay triangulation routine in MATLAB and tries to optimize the node locations by a force-based smoothing procedure. The topology is regularly updated by Delaunay. The boundary points are only allowed to move tangentially to the boundary by projections using the distance function. This iterative procedure typically results in very well-shaped meshes. Our aim with this code is simplicity, so that everyone can understand the code and modify it according to their needs. The code is not entirely robust (that is, it might not terminate and return a well-shaped mesh), and it is relatively slow. However, our current research shows that these issues can be resolved in an optimized C++ code, and we believe our simple MATLAB code is important for demonstration of the underlying principles. To use the code, simply download it from below and run it from MATLAB. For a quick demonstration, type "meshdemo2d" or "meshdemond". For more details see the documentation.
標簽: matlab有限元網格劃分程序
上傳時間: 2015-08-12
上傳用戶:凜風拂衣袖
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