搜索结果
找到约 59 项符合
row 的查询结果
按分类筛选
Linux/Unix编程 int show_char(int n, const char *name, chtype code) { const int height = 16 int row = 4 + (
int show_char(int n, const char *name, chtype code)
{
const int height = 16
int row = 4 + (n height)
int col = (n / height) * COLS / 2
mvprintw(row, col, " *s : ", COLS/4, name)
addch(code)
return n + 1
}
技术资料 期刊论文:QR factorization for row or column symmetric matrix
·期刊论文:QR factorization for row or column symmetric matrix
软件设计/软件工程 Dijkstra算法求最短路径(C#版) using System using System.Collections using System.Text namespace Greedy
Dijkstra算法求最短路径(C#版) using System
using System.Collections
using System.Text
namespace Greedy
{
class Marx
{
private int[] distance
private int row
private ArrayList ways = new ArrayList()
public Marx(int n,params int[] d)
{
this.row = n
distance = new int[row * row]
for ( ...
数学计算 Replace every element on the diagonal of an array with the sum of the elements on the current column
Replace every element on the diagonal of an array with the sum of the elements on the current column OR row. Labview
技术资料 verilog 4*4矩阵键盘
用verilog实现4*4矩阵键盘。将ROW[3:0]设为输入,COL[3:0]设为输出。如果没有任何键被按下,则ROW[3:0]一直被上拉为高电平。只有当有键被按下,且COL[3:0]中有低电平输出,ROW[3:0]中才有可能有低电平输入,也可说是被动地输入。
JavaScript 动态添加表格
动态添加表格,可实现添加N多row,很实用,也很好用的。
matlab例程 list of matlab m-files on matlab 7.0. learning , support vector machine and some utility routines :
list of matlab m-files on matlab 7.0. learning , support vector machine and some utility routines : autocorrelation, linearly scale randomize the row order of a matrix
通讯/手机编程 The program constructs girth-twelve column-weight QC-LPDC codes. The rate can be changed by changing
The program constructs girth-twelve column-weight QC-LPDC codes. The rate can be changed by changing k(row-weight), size is changed by varying m(sub-matrix size).
Applet SelectionDemo also has code (not included in the preceding snippet) that changes the table s selecti
SelectionDemo also has code (not included in the preceding snippet) that changes the table s selection orientation. By changing a couple of boolean values, you can make the table allow either column selections or individual cell selections, instead of row selections.
游戏 I originally wrote this program as an exercise for learning JAVE. Gomoku game is well-known in many
I originally wrote this program as an exercise for learning JAVE. Gomoku game is well-known in many countries and every country calls it differently. The winner is the first player to get an unbroken row of five stones horizontally, vertically, or diagonally.