The Engineering Vibration Toolbox is a set of educational programs written in Octave by Joseph C. Slater. Also Included are a number of help files, demonstration examples, and data files containing raw experimental data. The codes Include single degree of freedom response, response spectrum, finite elements, numerical integration, and phase plane analysis.
標簽: C. Engineering educational Vibration
上傳時間: 2013-11-29
上傳用戶:jkhjkh1982
Magenta Systems Internet Packet Monitoring Components are a set of Delphi components designed to capture and monitor internet packets using either raw sockets or the WinPcap device driver. Hardware permitting, ethernet packets may be captured and interpreted, and statistics maintained about the traffic. Uses of packet monitoring Include totalling internet traffic by IP address and service, monitoring external or internal IP addresses and services accessed, network diagnostics, and many other applications. The component Includes two demonstration applications, one that displays raw packets, the other that totals internet traffic. The components Include various filters to reduce the number of packets that need to be processed, by allowing specific IP addresses to be ignored, LAN mask to ignore local traffic, and ignore non-IP traffic such as ARP.
標簽: Components Monitoring components Internet
上傳時間: 2015-10-30
上傳用戶:水中浮云
詞法分析器制作與應用 設計思想 (1)程序主體結構部分: 說明部分 %% 規則部分 %% 輔助程序部分 (2)主體結構的說明 在這里說明部分告訴我們使用的LETTER,DIGIT, IDENT(標識符,通常定義為字母開頭的字母數字串)和STR(字符串常量,通常定義為雙引號括起來的一串字符)是什么意思.這部分也可以包含一些初始化代碼.例如用#Include來使用標準的頭文件和前向說明(forward ,references).這些代碼應該再標記"%{"和"%}"之間 規則部分> 可以包括任何你想用來分析的代碼 我們這里包括了忽略所有注釋中字符的功能,傳送ID名稱和字符串常量內容到主調函數和main函數的功能. (3)實現原理 程序中先判斷這個句語句中每個單元為關鍵字、常數、運算符、界符,對與不同的單詞符號給出不同編碼形式的編碼,用以區分之。 PL/0語言的EBNF表示 <常量定義>::=<標識符>=<無符號整數> <標識符>::=<字母>={<字母>|<數字>} <加法運算符>::=+|- <乘法運算符>::=*|/ <關系運算符>::==|#|<|<=|>|>= <字母>::=a|b|…|X|Y|Z <數字>::=0|1|2|…|8|9
上傳時間: 2015-11-04
上傳用戶:zhengzg
arm9的bootloader,適合通用2410x平臺 vivi.pal(20051228)支持tv輸出和vga輸出,vclk為26.25mhz vivi(20060330)支持vga輸出和tv輸出,vclk為25mhz 以上兩個vivi均編譯自vivi-br-release(20051228).tar.gz 在兩個不同vivi間切換的方法是在源文件“/Include/platform/smdk2410.h”中打開或者取消對PAL640480宏的定義: #define PAL640480 默認該句是注釋掉的,編譯得到的vivi的vclk為25mhz ch7005手冊中要求640x480的pal輸出時vclk為26.25mhz,但實踐中發現并不需要完全等與這個頻率,有時候vivi(20051228)的pal效果更好,具體使用哪個參數用戶可以多比較嘗試,也可以嘗試修改成其他的頻率。
標簽: bootloader 20051228 2410x arm9
上傳時間: 2013-12-16
上傳用戶:cainaifa
實習題 [問題描述] 1. 設順序表中的數據元素遞增有序,將插入到順序表的適當位置上,是該表仍然有序。 [輸入] 初始順序表,插入字符。 [輸出] 插入x后線性表的結果 [存儲結構] 采用順序存儲結構 [算法的基本思想] 建立一個遞增順序表,插入一個數值并移動元素,使其仍然有序。 程序如下: #Include "iostream.h" #Include <malloc.h> #define LIST_INTI_SIZE 100//初始空間大小 typedef struct SqList
上傳時間: 2014-01-14
上傳用戶:fhzm5658
[輸入] 圖的頂點個數N,圖中頂點之間的關系及起點A和終點B [輸出] 若A到B無路徑,則輸出“There is no path” 否則輸出A到B路徑上個頂點 [存儲結構] 圖采用鄰接矩陣的方式存儲。 [算法的基本思想] 采用廣度優先搜索的方法,從頂點A開始,依次訪問與A鄰接的頂點VA1,VA2,...,VAK, 訪問遍之后,若沒有訪問B,則繼續訪問與VA1鄰接的頂點VA11,VA12,...,VA1M,再訪問與VA2鄰接頂點...,如此下去,直至找到B,最先到達B點的路徑,一定是邊數最少的路徑。實現時采用隊列記錄被訪問過的頂點。每次訪問與隊頭頂點相鄰接的頂點,然后將隊頭頂點從隊列中刪去。若隊空,則說明到不存在通路。在訪問頂點過程中,每次把當前頂點的序號作為與其鄰接的未訪問的頂點的前驅頂點記錄下來,以便輸出時回溯。 #Include<stdio.h> int number //隊列類型 typedef struct{ int q[20]
標簽: 輸入
上傳時間: 2015-11-16
上傳用戶:ma1301115706
1.[問題描述] 編寫遞歸算法,計算二叉樹中葉子結點的數目 [輸入] 按照先序序列的順序輸入該結點的內容。其輸入abd eh cf i g . [輸出] 按中序序列輸出,輸出的結果為;dbheaficg并計算出二叉樹中葉子結點的數目為4 [存儲結構] 采用二叉表存儲 [算法的基本思想] 采用遞歸方法建立和遍歷二叉樹。首先建立二叉樹的根結點,然后建立其左右子樹,直到空子樹為止,中序遍歷二叉樹時,先遍厲左子樹,后遍厲右子樹,最后訪問根結點。根據左右子樹的最后一個結點計算出二叉樹中葉子結點的數目。 程序如下: #Include<stdio.h> #Include<malloc.h> #Include"stdlib.h"
上傳時間: 2015-11-16
上傳用戶:GavinNeko
2.[問題描述] 編寫遞歸算法,在二叉樹中求位于先序序列中第K個位置的結點 [輸入] 按照先序序列的順序輸入該結點的內容。其輸入abd eh cf i g 。輸入要求的位置 [輸出] 若二叉樹不空,按先序序列輸出,求出所求位置的結點 [存儲結構] 采用二叉表存儲 [算法的基本思想] 采用遞歸方法建立和遍歷二叉樹。首先建立二叉樹的根結點,然后建立其左右子樹,直到空子樹為止,先序遍歷二叉樹時,先遍厲左子樹,后遍厲右子樹,最后訪問根結點并計算出二叉樹中葉子結點的數目和第K個位置的結點 #Include<stdio.h> #Include<malloc.h> struct node{ char info struct node*llink,*rlink } typedef struct node NODE
上傳時間: 2014-01-13
上傳用戶:zm7516678
[問題描述] 將N個關鍵字去整數的記錄進行整序, 以使所有關鍵字為非負數的記錄排在關鍵字為負數的記錄之前,要求使用最少的附加空間,且算法的時間復雜度為O(N) [輸入] 待排序記錄個數,各關鍵字的值。 [輸出] 關鍵字從正負分開,正數在前 [存儲結構] 待排序記錄順序存儲。 [算法的基本思想] 快速排序算法每次任取一個記錄的關鍵字為標準,將其余記錄分為兩組將,N個關鍵字去整數的記錄進行整序, 以使所有關鍵字為非負數的記錄排在關鍵字為負數的記錄之前。 #Include <iostream> using namespace std #define MAXNUM 100//設文件的最長可能長度 void sort(int* keys, const int len)//排序
上傳時間: 2014-01-13
上傳用戶:aig85
Software Testing, Second Edition provides practical insight into the world of software testing and quality assurance. Learn how to find problems in any computer program, how to plan an effective test approach and how to tell when software is ready for release. Updated from the previous edition in 2000 to Include a chapter that specifically deals with testing software for security bugs, the processes and techniques used throughout the book are timeless. This book is an excellent investment if you want to better understand what your Software Test team does or you want to write better software.
標簽: practical Software provides software
上傳時間: 2014-08-01
上傳用戶:zhaiyanzhong