代码搜索:rows
找到约 10,000 项符合「rows」的源代码
代码结果 10,000
www.eeworm.com/read/245818/12779191
c vararr2d.c
//vararr2d.c -- functions using VLAs
#include
#define ROWS 3
#define COLS 4
int sum2d(int rows, int cols, int ar[rows][cols]);
int main(void)
{
int i, j;
int rs = 3;
www.eeworm.com/read/319472/13451265
c vararr2d.c
//vararr2d.c -- functions using VLAs
#include
#define ROWS 3
#define COLS 4
int sum2d(int rows, int cols, int ar[rows][cols]);
int main(void)
{
int i, j;
int rs = 3;
www.eeworm.com/read/315699/13537925
c vararr2d.c
//vararr2d.c -- functions using VLAs
#include
#define ROWS 3
#define COLS 4
int sum2d(int rows, int cols, int ar[rows][cols]);
int main(void)
{
int i, j;
int rs = 3;
www.eeworm.com/read/410432/11287503
c vararr2d.c
//vararr2d.c -- functions using VLAs
#include
#define ROWS 3
#define COLS 4
int sum2d(int rows, int cols, int ar[rows][cols]);
int main(void)
{
int i, j;
int rs = 3;
www.eeworm.com/read/295035/8189385
m qcc4.m
function c4=qcc4(H)
%c4=qcc4(H)
%如果包含有4环,则c4=1,否则c4=0
[rows cols]=size(H);
doubleH=double(H);
M=doubleH*doubleH';
t=find(M>1);
len=length(t);
cnt=len-rows;
c4=cnt>0;
www.eeworm.com/read/292920/8323963
c vararr2d.c
//vararr2d.c -- functions using VLAs
#include
#define ROWS 3
#define COLS 4
int sum2d(int rows, int cols, int ar[rows][cols]);
int main(void)
{
int i, j;
int rs = 3;
www.eeworm.com/read/268251/11148483
m ldpc_demo.m
clear all;
clc;
%%%%%%%%%%%%define dimension of the parity check matrix%%%%%%%%
rows=150;
cols=300;
h=gen_ldpc(rows,cols);%generates a 100 x 200 H matrix( the IG parity
www.eeworm.com/read/413044/11168962
c vararr2d.c
//vararr2d.c -- functions using VLAs
#include
#define ROWS 3
#define COLS 4
int sum2d(int rows, int cols, int ar[rows][cols]);
int main(void)
{
int i, j;
int rs = 3;
www.eeworm.com/read/323119/13351613
result select_found.result
drop table if exists t1,t2;
create table t1 (a int not null auto_increment, b int not null, primary key(a));
insert into t1 (b) values (2),(3),(5),(5),(5),(6),(7),(9);
select SQL_CALC_FOUND_ROWS * fro
www.eeworm.com/read/183326/9168707
c m_format.c
/****************************************************************************
* Copyright (c) 1998-2003,2004 Free Software Foundation, Inc. *
*