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

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

Long-Distance

  • 這是一個支持多位數運算(可以達到幾百位的長整數)的數類

    這是一個支持多位數運算(可以達到幾百位的長整數)的數類,名字叫Long,它是從long類發展過來的,但比原來的long類功能多。Long類可以和原有的double,long等等數據類型混合運算

    標簽: 運算 整數

    上傳時間: 2013-12-28

    上傳用戶:thinode

  • LVQ學習矢量化算法源程序 This directory contains code implementing the Learning vector quantization network.

    LVQ學習矢量化算法源程序 This directory contains code implementing the Learning vector quantization network. Source code may be found in LVQ.CPP. Sample training data is found in LVQ1.PAT. Sample test data is found in LVQTEST1.TST and LVQTEST2.TST. The LVQ program accepts input consisting of vectors and calculates the LVQ network weights. If a test set is specified, the winning neuron (class) for each neuron is identified and the Euclidean distance between the pattern and each neuron is reported. Output is directed to the screen.

    標簽: implementing quantization directory Learning

    上傳時間: 2015-05-02

    上傳用戶:hewenzhi

  • 將大數看作一個n進制數組

    將大數看作一個n進制數組,對于目前的32位系統而言n可以取值為2的32次方,即0x10000000, 假如將一個1024位的大數轉化成0x10000000進制,它就變成了32位,而每一位的取值范圍就不是0-1 或0-9,而是0-0xffffffff。我們正好可以用一個無符號長整數來表示這一數值。所以1024位的大數 就是一個有32個元素的unsigned long數組。而且0x100000000進制的數組排列與2進制流對于計算機 來說,實際上是一回事,但是我們完全可以針對unsigned long數組進行“豎式計算”,而循環規模 被降低到了32次之內,并且算法很容易理解。

    標簽: 進制 數組

    上傳時間: 2015-05-29

    上傳用戶:xsnjzljj

  • 最小二乘法曲線擬合 作者:佚名 文章來源:不詳 點擊數:164 更新時間:2006-1-4 【字體:小 大】【發表評論】【加入收藏】【告訴好友】【打印此文】【關閉窗口

    最小二乘法曲線擬合 作者:佚名 文章來源:不詳 點擊數:164 更新時間:2006-1-4 【字體:小 大】【發表評論】【加入收藏】【告訴好友】【打印此文】【關閉窗口】 //最小二乘法曲線擬合 typedef CArray<double,double>CDoubleArray BOOL CalculateCurveParameter(CDoubleArray *X,CDoubleArray *Y,long M,long N,CDoubleArray *A) { //X,Y -- X,Y兩軸的坐標 //M -- 結果變量組數 //N -- 采樣數目 //A -- 結果參數   文章錄入:admin 責任編輯:admin  

    標簽: 2006 164 最小二乘法 曲線擬合

    上傳時間: 2014-01-24

    上傳用戶:liansi

  • 用CORDIC算法實現的2參數反正切。結果的精度與CORDIC的迭代次數有關

    用CORDIC算法實現的2參數反正切。結果的精度與CORDIC的迭代次數有關,迭代次數越多,精度越高。本例子中精確到小數點后4位。要提高迭代次數,還得把增加1QN格式的位數,比如32位long,程序多處需要修改,有需要的話自己改吧。

    標簽: CORDIC 算法 參數 反正切

    上傳時間: 2014-05-28

    上傳用戶:大融融rr

  • 函數模板T max(T a, T b, T c),使之實現對任何類型數

    函數模板T max(T a, T b, T c),使之實現對任何類型數,能從三個數中求出最大數返回。設計各種類型數據(char,short,long,float,double)調用此函數模板。

    標簽: max 函數 模板

    上傳時間: 2015-07-07

    上傳用戶:時代電子小智

  • 用C語言實現最短路徑算法中的Bellman-Ford算法

    用C語言實現最短路徑算法中的Bellman-Ford算法,這個算法可以用來解決信號處理中的一些問題。bellman_ford.c為源程序;distance.txt文件存放各界點之間的距離,以99999表示無窮大;bellman_ford.txt文件是輸出文件,存放每輪循環得到的中間值,以及最后得到的到各個節點的最短距離,如果圖包含負回路,文件中返回FALSE。

    標簽: Bellman-Ford 算法 C語言 最短路徑

    上傳時間: 2013-12-31

    上傳用戶:陽光少年2016

  • This text surrounds the development of the electric power SCADA system exactly, aiming at the presen

    This text surrounds the development of the electric power SCADA system exactly, aiming at the present condition of the our country electric power charged barbed wire net currently, according to the oneself at the e- lectric power protect the profession after the electricity in seven years of development, design and adjust to try the experience on the scene from following severals carry on the treatise:Is the emergence to the system of SC- ADA and developments to introduce first Carry on the introduction elucidation to applied present condition and the development foregrounds of various terminal equipments communication agreement(rules invite) the next in order Then is the elucidation to the windows the bottom according to the mfc the plait distance environment an- d VC++6.0 plait distance softwares Carry on the more detailed treatise to the realization of the procedure struct- ure frame and the source code again End is the applied case example give examples.

    標簽: the development surrounds electric

    上傳時間: 2014-10-28

    上傳用戶:liuchee

  • Implemented BFS, DFS and A* To compile this project, use the following command: g++ -o search ma

    Implemented BFS, DFS and A* To compile this project, use the following command: g++ -o search main.cpp Then you can run it: ./search The input is loaded from a input file in.txt Here is the format of the input file: The first line of the input file shoud contain two chars indicate the source and destination city for breadth first and depth first algorithm. The second line of input file shoud be an integer m indicate the number of connections for the map. Following m lines describe the map, each line represents to one connection in this form: dist city1 city2, which means there is a connection between city1 and city2 with the distance dist. The following input are for A* The following line contains two chars indicate the source and destination city for A* algorithm. Then there is an integer h indicate the number of heuristic. The following h lines is in the form: city dist which means the straight-line distance from the city to B is dist.

    標簽: Implemented following compile command

    上傳時間: 2014-01-01

    上傳用戶:lhc9102

  • Visual Basic 6.0可以通過調用API函數格式化一個磁盤

    Visual Basic 6.0可以通過調用API函數格式化一個磁盤,無論是軟盤還是硬盤。 打開一個新的項目(工程1) ,如果你沒有更改過缺省模式,那么Visual Basic 6.0會自動添加一個form1文件,在form1上添加一個命令控件,將下面的代碼拷入。 Option Explicit Private Declare Function SHFormatDrive Lib"shell32"( ByVal Hend AS Long,ByVal Drive AS Long,ByVal FormatID AS Long,ByVal Options AS Long) as Long Private Sub FormatDisk(intDrive as integer,blnQuickFormat as Boolean) dim lngReturn As Long if (blnQuickFormat) then lngReturn= SHFormatDrive(0,intDrive,0&,1&) else lngReturn= SHFormatDrive(0,intDrive,0&,0&) end if end Sub Private Sub Command1_Click() call FormatDisk(0,True) End Sub 運行此程序。 注意FormatDisk函數的第一個變量很重要,他的值是0,1,2時代表格式化的分別是:A、B、C盤。

    標簽: Visual Basic 6.0 API

    上傳時間: 2015-10-05

    上傳用戶:kytqcool

主站蜘蛛池模板: 鄱阳县| 盱眙县| 桑日县| 新龙县| 昭平县| 登封市| 厦门市| 麻江县| 即墨市| 三河市| 昔阳县| 麟游县| 集贤县| 张家界市| 尤溪县| 云阳县| 渝中区| 河东区| 嘉鱼县| 米脂县| 千阳县| 沙洋县| 濮阳市| 遂平县| 略阳县| 东宁县| 新津县| 东乡| 隆子县| 塘沽区| 庆安县| 罗田县| 舟山市| 章丘市| 上杭县| 岗巴县| 新丰县| 开阳县| 仁布县| 梁山县| 龙山县|