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

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

no-crashes-allowed

  • prolog 找路例子程序: === === === === === === Part 1-Adding connections Part 2-Simple Path example

    prolog 找路例子程序: === === === === === === Part 1-Adding connections Part 2-Simple Path example | ?- path1(a,b,P,T). will produce the response: T = 15 P = [a,b] ? Part 3 - Non-repeating path As an example, the query: ?- path2(a,h,P,T). will succeed and may produce the bindings: P = [a,depot,b,d,e,f,h] T = 155 Part 4 - Generating a path below a cost threshold As an example, the query: ?- path_below_cost(a,[a,b,c,d,e,f,g,h],RS,300). returns: RS = [a,b,depot,c,d,e,g,f,h] ? RS = [a,c,depot,b,d,e,g,f,h] ? no ==================================

    標(biāo)簽: Part connections example prolog

    上傳時間: 2015-04-24

    上傳用戶:ljt101007

  • 這是堆磚塊的問題

    這是堆磚塊的問題,輸入磚塊的堆砌情況,輸出這堆磚塊是否牢固,是就輸出Yes,否則輸出No。

    標(biāo)簽:

    上傳時間: 2014-01-17

    上傳用戶:lepoke

  • This project is created using the Keil ARM CA Compiler. The Logic Analyzer built into the simula

    This project is created using the Keil ARM CA Compiler. The Logic Analyzer built into the simulator may be used to monitor and display any variable or peripheral I/O register. It is already configured to show the PWM output signal on PORT3.0 and PORT3.1 This ARM Example may be debugged using only the uVision Simulator and your PC--no additional hardware or evaluation boards are required. The Simulator provides cycle-accurate simulation of all on-chip peripherals of the ADuC7000 device series. You may create various input signals like digital pulses, sine waves, sawtooth waves, and square waves using signal functions which you write in C. Signal functions run in the background in the simulator within timing constraints you configure. In this example, several signal functions are defined in the included Startup_SIM.INI file.

    標(biāo)簽: the Analyzer Compiler project

    上傳時間: 2013-12-19

    上傳用戶:Yukiseop

  • cp0801_pathloss為UWB信道損耗計算函數(shù)

    cp0801_pathloss為UWB信道損耗計算函數(shù),利用a=(c/(d^gamma))計算出信道增益,然后對函數(shù)的輸入信號幅度進行變換得到輸出結(jié)果。 cp0801_Gnoise1和cp0801_Gnoise2為產(chǎn)生AWGN的函數(shù),分別為Eb/No和Ex/No條件下AWGN的產(chǎn)生

    標(biāo)簽: pathloss 0801 UWB cp

    上傳時間: 2013-12-17

    上傳用戶:gxmm

  • This code detects memory leaks in embedded VC++ almost the same way crtdbg does in VC++. At the end

    This code detects memory leaks in embedded VC++ almost the same way crtdbg does in VC++. At the end of program execution it will display in the debug window if there were any memory leaks and how the memory looks so you can identify where your memory leak occurred. It will display in the debug window a message saying no memory leaks detected if there are no memory leaks. Similar to what crtdbg.h does in VC++. The code detects memory leaks generated with calls to new and delete operators in C++. The code doesn t detect memory leaks generated with C functions: malloc, calloc, free, but that can be done in the future. Let me know and I will program it.

    標(biāo)簽: the embedded detects almost

    上傳時間: 2015-05-07

    上傳用戶:comua

  • This m file models a DPSK UWB system using a delay in one leg of the mixer, correlation receiver low

    This m file models a DPSK UWB system using a delay in one leg of the mixer, correlation receiver low pass filter combination requiring no template for synching. Various waveforms are displayed throughout the system to allow the user to observe operation of the system.

    標(biāo)簽: correlation receiver models system

    上傳時間: 2013-12-13

    上傳用戶:semi1981

  • This a very simple Yee algorithm 3D FDTD code in C implementing the free space form of Maxwell s equ

    This a very simple Yee algorithm 3D FDTD code in C implementing the free space form of Maxwell s equations on a Cartesian grid. There are no internal materials or geometry. The code as delivered simulates an idealized rectangular waveguide by treating the interior of the mesh as free space/air and enforcing PEC (Perfect Electric Conductor) conditions on the faces of the mesh.

    標(biāo)簽: implementing algorithm Maxwell simple

    上傳時間: 2015-05-14

    上傳用戶:水中浮云

  • ARM下 Implement matrix multiplication of 2 square matrices, with data read from an input file and pri

    ARM下 Implement matrix multiplication of 2 square matrices, with data read from an input file and printed both to the console and to an output file. • Assume a file with correct data (no garbage, characters, etc.). • you must check and provide appropriate execution for 2 extra cases, namely when the matrix size given is either “0” , or when the size is greater than the maximum handled of “5” . In these 2 cases you must implement the following behaviour: o If size = 0, then print a message “Size = 0 is unacceptable” and continue by reading the next size for the next 2 matrices (if not end of file). o If size >5, then print two messages: “Size is too big - unacceptable”. Then read and discard the next (size2 ) integers and continue by reading the next size for the next 2 matrices (if not end of file).

    標(biāo)簽: multiplication Implement matrices matrix

    上傳時間: 2014-08-30

    上傳用戶:dsgkjgkjg

  • 數(shù)字運算

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

    標(biāo)簽: 數(shù)字 運算

    上傳時間: 2015-05-21

    上傳用戶:daguda

  • * Function: * 1. Replace the first oldstr with newstr in srcstr * Arguments: * IN : * srcst

    * Function: * 1. Replace the first oldstr with newstr in srcstr * Arguments: * IN : * srcstr * oldstr * newstr * OUT : * srcstr * Return: * 1. If find and replace one oldstr with newstr in srcstr , return 1 * 2. If find no oldstr in srcstr , return 0 * 3. If error (malloc return NULL) return -1 * Notes: * 1. srcstr should be large size enough.

    標(biāo)簽: Arguments Function Replace oldstr

    上傳時間: 2014-12-20

    上傳用戶:Yukiseop

主站蜘蛛池模板: 秦皇岛市| 广安市| 承德县| 思茅市| 阿瓦提县| 宝应县| 长丰县| 渭源县| 峨山| 乡城县| 宁乡县| 柯坪县| 资阳市| 正蓝旗| 玉环县| 泌阳县| 钟祥市| 金坛市| 新疆| 华容县| 瑞金市| 江西省| 中阳县| 大丰市| 镇远县| 营山县| 留坝县| 龙泉市| 洛扎县| 墨竹工卡县| 黔东| 沙田区| 道真| 图木舒克市| 邻水| 雷州市| 广南县| 盘锦市| 南澳县| 额敏县| 柏乡县|