搜索:rows

找到约 17 项符合「rows」的查询结果

结果 17
https://www.eeworm.com/dl/527/361532.html 通讯/手机编程

The algorith divides rows in to four equal groups. The rows are then used to from a distance graph w

The algorith divides rows in to four equal groups. The rows are then used to from a distance graph which is then transformed into a matrix. girth of eight is maintained by avoiding six-cycles in the graph construction
下载 158
·
查看 1084
https://www.eeworm.com/dl/619/451810.html Linux/Unix编程

form = new_form(fields) scale_form(form, &rows, &cols) win = newwin(rows+3, cols+4, 3, 20)

form = new_form(fields) scale_form(form, &rows, &cols) win = newwin(rows+3, cols+4, 3, 20) subwin = derwin(win, rows, cols, 1, 2) set_form_sub(form, subwin) box(win, 0, 0) keypad(win, TRUE) post_form(form) refresh() wrefresh(win) wrefresh(subwin) ...
下载 106
·
查看 1050
https://www.eeworm.com/dl/665/246458.html matlab例程

This demonstration shows that reordering the rows and columns of a sparse matrix S can affect the ti

This demonstration shows that reordering the rows and columns of a sparse matrix S can affect the time and storage required for a matrix operation such as factoring S into its Cholesky decomposition
下载 61
·
查看 1105
https://www.eeworm.com/dl/648/366564.html 单片机开发

* The keyboard is assumed to be a matrix having 4 rows by 6 columns. However, this code works for an

* The keyboard is assumed to be a matrix having 4 rows by 6 columns. However, this code works for any * matrix arrangements up to an 8 x 8 matrix. By using from one to three of the column inputs, the driver * can support "SHIFT" keys. These keys are: SHIFT1, SHIFT2 and SHIFT3.
下载 107
·
查看 1167
https://www.eeworm.com/dl/633/334949.html Java编程

(1) 设计和编写代表矩阵的Matrix类。该类包括矩阵行列数变量int rows和int cols

(1) 设计和编写代表矩阵的Matrix类。该类包括矩阵行列数变量int rows和int cols,矩阵数据数组double data[][],构造方法Matrix()、Matrix(int rows,int cols)、Matrix(int rows,int cols,double data[][]),获取某元素值的方法getData(int row,int col),设置某元素值的方法setData(int row,int col ...
下载 184
·
查看 1143
https://www.eeworm.com/dl/641/175274.html 数学计算

矩阵运算的算法 用Type类数组创建矩阵对象 matrix(int rows,int cols) //创建矩阵,值为0 matrix(int n) //创建单位阵 matrix(c

矩阵运算的算法 用Type类数组创建矩阵对象 matrix(int rows,int cols) //创建矩阵,值为0 matrix(int n) //创建单位阵 matrix(const matrix &) //拷贝构造函数 BOOL Ismatrixf(){ return (rows==cols) } //判断矩阵是否为方阵 modifyrowscols(int rows,int cols) //修改矩阵的行列数 ~matrix ...
下载 149
·
查看 1086
https://www.eeworm.com/dl/641/285680.html 数学计算

一个使用MPI的并行Equation Solver。采用高斯迭代。在双核和4核机器上加速比可到2和4。并行的效果非常好。采用ghost rows。可操作于任意的process数

一个使用MPI的并行Equation Solver。采用高斯迭代。在双核和4核机器上加速比可到2和4。并行的效果非常好。采用ghost rows。可操作于任意的process数
下载 131
·
查看 1142
https://www.eeworm.com/dl/523/339304.html 数据库系统

创建一个datarow

创建一个datarow,给它填充数据,把它添加到dataset的rows的集合中;用update()方法,把变化返回到数据库中
下载 90
·
查看 1044
https://www.eeworm.com/dl/689/315453.html SQL Server

Run the SQL script given to you to create a Library database. Note that each row in the Book table d

Run the SQL script given to you to create a Library database. Note that each row in the Book table denotes a book copy. Thus, if the library carries three copies of the title "DBMS", there will be three rows in the Book table, one for each copy. Write the SQL statements to do the ...
下载 109
·
查看 1064
https://www.eeworm.com/dl/641/453195.html 数学计算

The code performs a number (ITERS) of iterations of the Bailey s 6-step FFT alg

The code performs a number (ITERS) of iterations of the Bailey s 6-step FFT algorithm (following the ideas in the CMU Task parallel suite). 1.- Generates an input signal vector (dgen) with size n=n1xn2 stored ...
下载 198
·
查看 1127