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

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

Key-value

  • This book is about using Python to get jobs done on Windows.This intended to be a practical book foc

    This book is about using Python to get jobs done on Windows.This intended to be a practical book focused on tasks. It doesn t aim to teach Python programming, although we do provide a brief tutorial. Instead, it aims to cover:How Python works on Windows The key integration technologies supported by Python on Windows, such as the Win32 extensions, which let you call the Windows API, and the support for COM Examples in many topic areas showing what Python can do and how to put it to work.

    標簽: This book practical intended

    上傳時間: 2015-05-10

    上傳用戶:ddddddos

  • 由于電子商務廣泛采用公開密鑰技術

    由于電子商務廣泛采用公開密鑰技術,職能部門有必要對公鑰加以管理。本文簡要介紹了基于PKI的密鑰托管技術及密鑰托管代理的概念,分析了密鑰托管的步驟,以及政府部門在密鑰托管代理的幫助下強制訪問信息的過程。 關鍵詞:密鑰托管 證書授權認證 公開密鑰 公鑰基礎設施 托管證書 網絡的安全問題得到人們的日益重視。網絡面臨的威脅五花八門:內部竊密和破壞,截收,非法訪問,破壞信息的完整性,冒充,破壞系統的可用性,重演,抵賴等。于是公鑰基礎設施(Public Key Infrastructure,PKI)應運而生。PKI是電子商務和其它信息系統的安全基礎,用來建立不同實體間的"信任"關系。它的基礎是加密技術,核心是證書服務。用戶使用由證書授權認證中心(Certificate Authority,CA)簽發的數字證書,結合加密技術,可以保證通信內

    標簽: 電子商務 密鑰

    上傳時間: 2013-12-18

    上傳用戶:tonyshao

  • The module LSQ is for unconstrained linear least-squares fitting. It is based upon Applied Statisti

    The module LSQ is for unconstrained linear least-squares fitting. It is based upon Applied Statistics algorithm AS 274 (see comments at the start of the module). A planar-rotation algorithm is used to update the QR- factorization. This makes it suitable for updating regressions as more data become available. The module contains a test for singularities which is simpler and quicker than calculating the singular-value decomposition. An important feature of the algorithm is that it does not square the condition number. The matrix X X is not formed. Hence it is suitable for ill- conditioned problems, such as fitting polynomials. By taking advantage of the MODULE facility, it has been possible to remove many of the arguments to routines. Apart from the new function VARPRD, and a back-substitution routine BKSUB2 which it calls, the routines behave as in AS 274.

    標簽: least-squares unconstrained Statisti Applied

    上傳時間: 2015-05-14

    上傳用戶:aig85

  • 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

  • 數字運算

    數字運算,判斷一個數是否接近素數 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

  • bung.cpp bung.dfm bung.h DbgWarn.cpp DbgWarn.dfm DbgWarn.h Debug.cpp Debug.dfm Debug.h Emu.cpp Emu

    bung.cpp bung.dfm bung.h DbgWarn.cpp DbgWarn.dfm DbgWarn.h Debug.cpp Debug.dfm Debug.h Emu.cpp Emu.dfm Emu.h gbc.bpg gbc.bpr gbc.cpp gbc.exe gbc.res gbcemu.bpr gbcemu.cpp gbcemu.dll gbcemu.h gbcemu.lib Gotodialog.cpp Gotodialog.dfm Gotodialog.h MapView.cpp MapView.dfm MapView.h Pal.cpp Pal.dfm Pal.h readme.txt reg.cpp reg.dfm reg.h rom.cpp rom.h Search.cpp Search.dfm Search.h Sound.cpp Sound.h TileView.cpp TileView.dfm TileView.h VALUE.CPP VALUE.DFM VALUE.H

    標簽: DbgWarn Debug cpp bung

    上傳時間: 2014-01-04

    上傳用戶:agent

  • 小型CA的完整代碼

    小型CA的完整代碼,可以制作key單證書

    標簽: 代碼

    上傳時間: 2015-05-31

    上傳用戶:xinyuzhiqiwuwu

  • 2^x mod n = 1 acm競賽題 Give a number n, find the minimum x that satisfies 2^x mod n = 1. Input

    2^x mod n = 1 acm競賽題 Give a number n, find the minimum x that satisfies 2^x mod n = 1. Input One positive integer on each line, the value of n. Output If the minimum x exists, print a line with 2^x mod n = 1. Print 2^? mod n = 1 otherwise. You should replace x and n with specific numbers. Sample Input 2 5 Sample Output 2^? mod 2 = 1 2^4 mod 5 = 1

    標簽: mod satisfies minimum number

    上傳時間: 2015-06-02

    上傳用戶:qlpqlq

  • Expert Choice represents a significant contribution to the decision making process 工t assists a deci

    Expert Choice represents a significant contribution to the decision making process 工t assists a decision maker in solving complex problems involving many criteria and several courses of action . An Expert Choice solution to a problem reflects the expertise of the decision maker , not the computer . Behavioral scientists have spent many years studying the human mind and how it makes decisions . They have found that humans are influenced by their previous experiences and this causes them to have biases . Basic instincts , preferences and environmental factors also play key roles in how we analyze data and make decisions . There 15 way to remove these factors from human decision making , nor would we necessarily want to , but as the problems of our world become more and more complex , it 15 necessary for us to employ a framework to help make more logical and less biased decisions while still taking our feelings and intuition into consideration .

    標簽: contribution significant represents decision

    上傳時間: 2015-06-02

    上傳用戶:gmh1314

  • This a simple genetic algorithm implementation where the evaluation function takes positive values

    This a simple genetic algorithm implementation where the evaluation function takes positive values only and the fitness of an individual is the same as the value of the objective function

    標簽: implementation evaluation algorithm function

    上傳時間: 2015-06-03

    上傳用戶:2467478207

主站蜘蛛池模板: 武穴市| 东乡县| 马关县| 吉安市| 夹江县| 育儿| 长治县| 襄汾县| 孟州市| 孝感市| 双辽市| 灵台县| 工布江达县| 湘潭县| 饶平县| 孝义市| 佛冈县| 安远县| 彭泽县| 竹山县| 揭东县| 喜德县| 宽甸| 临清市| 宝鸡市| 西充县| 建湖县| 山西省| 双峰县| 台中县| 磴口县| 英德市| 固原市| 海淀区| 绥棱县| 宁安市| 霞浦县| 绥芬河市| 庆阳市| 苏尼特右旗| 舟山市|