O Reilly系列書籍之Java網絡編程(第二版),英文原版書籍,內容講的比較全面。
上傳時間: 2014-01-17
上傳用戶:gououo
1.功能 用全選主元高斯消去法計算矩陣A的秩(C語言) 2.函數參數說明 double a[m][n] : 存放mxn階矩陣A的元素,返回時將被破壞 int m : 矩陣A的行數 int n : 矩陣A的列數 int rank() : 函數返回A的秩 3.文件說明 rank.c為函數程序 rank0.c為主函數程序
上傳時間: 2015-09-03
上傳用戶:xuan‘nian
1.功能 用全選主元高斯消去法計算n階方陣A所對應的行列式的值(C語言) 2.參數說明 double a[n][n] : 存方陣A的元素,返回時被破壞 int n : 方陣A的階數 double sdet() : 函數返回行列式的值 3.文件說明 sdet.c為函數程序 sdet0.c為主函數程序
上傳時間: 2014-01-14
上傳用戶:rocwangdp
1.功能 利用廣義逆求解無約束條件下的優化問題(C語言) 2.參數說明 int m : 非線性方程組中方程個數 int n : 非線性方程組中未知數個數 double eps1 : 控制最小二乘解的精度要求 double eps2 : 用于奇異值分解中的控制精度要求 double x[n] : 存放非線性方程組解的初始近似值X(0),要求各分量不全為0 int ka : Ka=max{m,n}+1 void (*f)() : 指向計算非線性方程組中各方程左端函數值的函數名(用戶自編) void (*s)() : 指向計算雅可比矩陣的函數名 int ngin() : 函數返回一個標志值 3.文件說明 ngin.c函數文件 ngin0.c主函數文件
上傳時間: 2013-12-23
上傳用戶:大三三
1.功能 用高斯方法計算n重積分(C語言) 2.參數說明 int n : 積分重數 int js[n] : js[k]表示第k層積分區間所劃分的子區間 void (*ss)() : 指向計算各層積分上、下限的函數名(用戶自編) double (*f)() : 指向計算被積函數值的函數名(用戶自編) double gaus() : 函數返回積分值 3.文件說明 gaus.c為函數程序 gaus0.c為主函數程序
上傳時間: 2014-01-05
上傳用戶:731140412
解國際象棋的N皇后問題的C++源代碼,可用于大學計算機技術課程《算法分析》上機聯系
上傳時間: 2014-01-01
上傳用戶:yyyyyyyyyy
support vector classification machine % soft margin % uses "kernel.m" % % xtrain: (Ltrain,N) with Ltrain: number of points N: dimension % ytrain: (Ltrain,1) containing class labels (-1 or +1) % xrun: (Lrun,N) with Lrun: number of points N: dimension % atrain: alpha coefficients (from svcm_train on xtrain and ytrain) % btrain: offest coefficient (from svcm_train on xtrain and ytrain) % % ypred: predicted y (Lrun,1) containing class labels (-1 or +1) % margin: (signed) separation from the separating hyperplane (Lrun,1
標簽: classification support machine Ltrain
上傳時間: 2015-09-04
上傳用戶:問題問題
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
Thinking in C++ 電子書 C++經典之一喔~
上傳時間: 2015-09-04
上傳用戶:牛布牛
計算矢量所在扇區的N模型,判斷當前的扇區
上傳時間: 2013-12-18
上傳用戶:kr770906