亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

integer-only

  • MSP430-JTAG-Adapter:MSP430-JTAG doesn’t need external power supply, as MSP430 microcontrollers requi

    MSP430-JTAG-Adapter:MSP430-JTAG doesn’t need external power supply, as MSP430 microcontrollers require only 3-5 mA while programming and all necessary power supply is taken from the LPT port.

    標簽: MSP 430 microcontrollers JTAG-Adapter

    上傳時間: 2013-12-25

    上傳用戶:洛木卓

  • 自制51編程器 I have build my own programmer. This device can program the AT89C51 and works with it. So i

    自制51編程器 I have build my own programmer. This device can program the AT89C51 and works with it. So it can easily be adapted to programming other devices by itself. The Atmel Flash devices are ideal for developing, since they can be reprogrammed easy, often and fast. You need only 1 or 2 devices in low cost plastic case for developing. In contrast you need 10 or more high cost windowed devices if you must develop with EPROM devices (e.g. Phillips 87C751).

    標簽: programmer program device build

    上傳時間: 2015-05-11

    上傳用戶:sdq_123

  • he LPC932 can be used to create a Pulse Width Modulated PWM signal. That s an analog signal, with on

    he LPC932 can be used to create a Pulse Width Modulated PWM signal. That s an analog signal, with only 2 discrete levels, for example 0V and 5V and a constant period. The current value of this signal at a certain poiTnt of time is proportional to its Duty Cycle. That s the High Time during one period divided by the period. It can also be calculated as the average value during a particular period. That means after low pass filtering, (e.g. RC circuit) the signal becomes analog, with an actual value controlled by the microcontroller. The PWM functionality enables the LPC932 to control for example the speed of DC motors or the brightness of electric lighting.

    標簽: signal Modulated analog create

    上傳時間: 2015-05-14

    上傳用戶:CHINA526

  • 物流分析工具包。Facility location: Continuous minisum facility location, alternate location-allocation (ALA)

    物流分析工具包。Facility location: Continuous minisum facility location, alternate location-allocation (ALA) procedure, discrete uncapacitated facility location Vehicle routing: VRP, VRP with time windows, traveling salesman problem (TSP) Networks: Shortest path, min cost network flow, minimum spanning tree problems Geocoding: U.S. city or ZIP code to longitude and latitude, longitude and latitude to nearest city, Mercator projection plotting Layout: Steepest descent pairwise interchange (SDPI) heuristic for QAP Material handling: Equipment selection General purpose: Linear programming using the revised simplex method, mixed-integer linear programming (MILP) branch and bound procedure Data: U.S. cities with populations of at least 10,000, U.S. highway network (Oak Ridge National Highway Network), U.S. 3- and 5-digit ZIP codes

    標簽: location location-allocation Continuous alternate

    上傳時間: 2015-05-17

    上傳用戶:kikye

  • This application, built in VB using MapObjects, allows the user to zoom in, zoom out and pan using

    This application, built in VB using MapObjects, allows the user to zoom in, zoom out and pan using only the mouse. The pan is a dynamic pan just push the mouse in the direction you would like to pan.

    標簽: using zoom application MapObjects

    上傳時間: 2014-12-22

    上傳用戶:ryb

  • Although there has been a lot of AVL tree libraries available now, nearly all of them are meant to w

    Although there has been a lot of AVL tree libraries available now, nearly all of them are meant to work in the random access memory(RAM). Some of them do provide some mechanism for dumping the whole tree into a file and loading it back to the memory in order to make data in that tree persistent. It serves well when there s just small amount of data. When the tree is somewhat bigger, the dumping/loading process could take a lengthy time and makes your mission-critical program less efficient. How about an AVL tree that can directly use the disk for data storage ? If there s something like that, we won t need to read through the whole tree in order to pick up just a little bit imformation(a node), but read only the sectors that are neccssary for locating a certain node and the sectors in which that node lies. This is my initial motivation for writing a storage-media independent AVL Tree. However, as you step forth, you would find that it not only works fine with disks but also fine with memorys, too.

    標簽: available libraries Although nearly

    上傳時間: 2014-01-22

    上傳用戶:zhoujunzhen

  • unit Other interface Uses Windows,tlhelp32,PsAPI type PStrData = ^TStrData TStrData

    unit Other interface Uses Windows,tlhelp32,PsAPI type PStrData = ^TStrData TStrData = record Ident: Integer Str: string end TUseInfo=record QQ, Mail, Page:string DL:boolean end TSendMailInfo=record IPAddress, FAddress, FName, FPW, FCName, FCPW:string //發信郵箱檢證用戶密碼 end { FloatToText, FloatToTextFmt, TextToFloat, and FloatToDecimal type codes }

    標簽: TStrData interface PStrData Windows

    上傳時間: 2014-12-22

    上傳用戶:asddsd

  • 解決時鐘問題

    解決時鐘問題,acm競賽題 A weird clock marked from 0 to 59 has only a minute hand. It won t move until a special coin is thrown into its box. There are different kinds of coins as your options. However once you make your choice, you cannot use any other kind. There are infinite number of coins of each kind, each marked with a number d ( 0 <= 1000 ), meaning that this coin will make the minute hand move d times clockwise the current time. For example, if the current time is 45, and d = 2. Then the minute hand will move clockwise 90 minutes and will be pointing to 15. Now you are given the initial time s ( 0 <= s <= 59 ) and the coin s type d. Write a program to find the minimum number of d-coins needed to turn the minute hand back to 0.

    標簽: 時鐘

    上傳時間: 2015-05-21

    上傳用戶:rishian

  • 數字運算

    數字運算,判斷一個數是否接近素數 A Niven number is a number such that the sum of its digits divides itself. For example, 111 is a Niven number because the sum of its digits is 3, which divides 111. We can also specify a number in another base b, and a number in base b is a Niven number if the sum of its digits divides its value. Given b (2 <= b <= 10) and a number in base b, determine whether it is a Niven number or not. Input Each line of input contains the base b, followed by a string of digits representing a positive integer in that base. There are no leading zeroes. The input is terminated by a line consisting of 0 alone. Output For each case, print "yes" on a line if the given number is a Niven number, and "no" otherwise. Sample Input 10 111 2 110 10 123 6 1000 8 2314 0 Sample Output yes yes no yes no

    標簽: 數字 運算

    上傳時間: 2015-05-21

    上傳用戶:daguda

  • The Audio File Library provides a uniform programming interface to standard digital audio file form

    The Audio File Library provides a uniform programming interface to standard digital audio file formats. This library allows the processing of audio data to and from audio files of many common formats (currently AIFF, AIFF-C, WAVE, NeXT/Sun .snd/.au, IRCAM, AVR, Amiga IFF/8SVX, and NIST SPHERE). The library also supports compression (currently G.711 mu-law and A-law and IMA and MS ADPCM) as well as PCM formats of all flavors (signed and unsigned integer, single- and double-precision floating point).

    標簽: programming interface provides standard

    上傳時間: 2014-12-06

    上傳用戶:a6697238

主站蜘蛛池模板: 和平区| 鲁山县| 平和县| 渭南市| 会泽县| 泾阳县| 额敏县| 垣曲县| 东莞市| 会同县| 泽普县| 宜章县| 宁乡县| 永仁县| 克拉玛依市| 门头沟区| 荔浦县| 玛沁县| 沁源县| 阳城县| 南安市| 清水县| 青冈县| 垦利县| 五寨县| 文化| 常宁市| 康乐县| 登封市| 新兴县| 嵊泗县| 沈阳市| 江山市| 和静县| 霍邱县| 龙泉市| 合肥市| 任丘市| 定襄县| 延津县| 肇庆市|