網上瘋傳的Excel BOM經典腳本,相信諸位PADS用戶再熟悉不過了吧! 但是它還有缺點: 1.元件封裝不能轉換。(元件位號為R/C/L的0402/063/0805/1206封裝自動轉換統一的對應封裝,以方便統計。) 2.元件參數轉換。(電阻的轉換0R時由0mR修正為0R,KR/MR修正為K/M。) 3.不能按元件的SMD屬性來分類統計。 4.有些公司在制作PADS庫元件時,已經為元件建立了Part ID。導出BOM時需要元件的Part ID屬性。 5.不能導出元件坐標。(本人改進導出元件幾何中心坐標,以便貼片生產之用。) 6.不能導出跳線。 7.不能支持WPS。 8.不能自定義導出元件的Part ID屬性。 9.不能自定義位號之間連接符號。 10.導出BOM特殊字符亂碼,比如常見的±/µ/Ω等。(PADS9.5在中文狀態下導出BOM就不會亂碼, 暫時還沒有更好的解決辦法,不過可以在Excel中替換解決。) 11.加載與運行腳本步驟繁冗;運行速度比較慢。(本人改進的代碼速度絕對不會比之前的慢。)
上傳時間: 2015-01-01
上傳用戶:rolypoly152
排序算法的性能比較 對不同類型的問題規模,測試各種介紹的排序算法的性能。統計他們的鍵值比較次數,鍵值移動次數以及運行時間并分析結果。 小型問題:N≈20 中型問題:N≈2000 大型問題:N≈200000. C 語言的32關鍵字如下: 實驗原理: 線性表的排序,快速,起泡,選擇,插入。
上傳時間: 2013-12-20
上傳用戶:lingzhichao
1、 了解系統調用pipe()的功能和實際原理 2、 編寫一段程序,使用管道實現父子進程之間的通信 a) 使用系統調用fork()創建一個子進程 b) 子進程調用函數write()向父進程發送自己的進程ID和字符串” s sending a message to parent.\n”。 c) 父進程調用函數read()通過管道讀出子進程發來的消息,將消息輸出屏幕,然后終止
上傳時間: 2013-12-16
上傳用戶:古谷仁美
R+樹的c實現源碼,對應文章T. K. Sellis, N. Roussopoulos, C. Faloutsos: The R+-Tree: A Dynamic Index for Multi-Dimensional Objects.
上傳時間: 2014-05-25
上傳用戶:sunjet
This book is the most accurate and up-to-date source of information the STL currently available. ... It has an approach and appeal of its own: it explains techniques for building data structures and algorithms on top of the STL, and in this way appreciates the STL for what it is - a framework. Angelika Langer, Independent Consultant and C++ Report Columnist "A superbly authored treatment of the STL......an excellent book which belongs in any serious C++ developer s library." Jim Armstrong, President 2112 F/X, Texas. \n The C++ Standard Template Library (STL) represents a breakthrough in C++ programming techniques. With it, software developers can achieve vast improvements in the reliability of their software, and increase their own productivity.
標簽: information up-to-date available currently
上傳時間: 2015-10-31
上傳用戶:CHINA526
文件恢復及修補 C 語言源程序,希望能對大家有所幫助,用Turbo C 開發
上傳時間: 2015-11-28
上傳用戶:2525775
我用matlab寫的一個corner detector, 效果比現在流行的harris,susan,CSS等效果要好。 Algorithm is derived from: X.C. He and N.H.C. Yung, Curvature Scale Space Corner Detector with Adaptive Threshold and Dynamic Region of Support , Proceedings of the 17th International Conference on Pattern Recognition, 2:791-794, August 2004. Improved algorithm has been included in A Corner Detector based on Global and Local Curvature Properties and submitted to Optical Engineering.
標簽: detector matlab corner harris
上傳時間: 2013-12-30
上傳用戶:569342831
linux 下c語言 多線程實例 ,能讓讀者對在linux下用C編寫多線程有個切實理解。
上傳時間: 2016-09-06
上傳用戶:腳趾頭
眾所周知,MATLAB是一個功能強大的數學軟件,擅長于用矩陣運算完成各種數學功能。但是其程序需要在MATLAB環境下解釋執行,效率不高。如果能將它強大的函數庫用于C語言,利用C來編譯執行,MATLAB將能發揮更大的作用。所以,MATLAB從5.0開始已經提供了與外部C/C++程序的應用程序接口,為利用C語言調用MATLAB的函數提供了可能。
標簽:
上傳時間: 2014-01-12
上傳用戶:xiaoxiang
溫度華氏轉變攝氏 #include <stdio.h> #include <stdlib.h> enum x {A,B,C,D,E} int main(void) { int a=73,b=85,c=66 { if (a>=90) printf("a=A等級!!\n") else if (a>=80) printf("73分=B等級!!\n") else if (a>=70) printf("73分=C等級!!\n") else if (a>=60) printf("73分=D等級!!\n") else if (a<60) printf("73分=E等級!!\n") } { if (b>=90) printf("b=A等級!!\n") else if (b>=80) printf("85分=B等級!!\n") else if (b>=70) printf("85分=C等級!!\n") else if (b>=60) printf("85分=D等級!!\n") else if (b<60) printf("85分=E等級!!\n") } { if (c>=90) printf("c=A等級!!\n") else if (c>=80) printf("66分=B等級!!\n") else if (c>=70) printf("66分=C等級!!\n") else if (c>=60) printf("66分=D等級!!\n") else if (c<60) printf("66分=E等級!!\n") } system("pause") return 0 }
上傳時間: 2014-11-10
上傳用戶:wpwpwlxwlx