代码搜索:Local
找到约 10,000 项符合「Local」的源代码
代码结果 10,000
www.eeworm.com/read/376688/9310295
m thresh.m
% Question No: 5
% Consider an image composed of small, no overlapping blobs. Segmenting the
% blobs based on thresholding.
function thresh(x)
f=imread(x);
f=im2double(f);
%global Thresholdi
www.eeworm.com/read/376399/9318395
plg guanjianlujing.plg
Build Log
--------------------Configuration: guanjianlujing - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\Users\蒋
www.eeworm.com/read/376397/9318412
plg xueshengxinxiguanli.plg
Build Log
--------------------Configuration: xueshengxinxiguanli - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\Us
www.eeworm.com/read/180067/9321614
c scsi-linux-pg.c
/* @(#)scsi-linux-pg.c 1.6 98/10/07 Copyright 1997 J. Schilling */
#ifndef lint
static char ___sccsid[] =
"@(#)scsi-linux-pg.c 1.6 98/10/07 Copyright 1997 J. Schilling";
#endif
/*
* Interface for th
www.eeworm.com/read/376114/9330366
c localerr.c
#include
void local_values(void)
{
int a = 1, b = 2, c = 3;
printf("a contains %d b contains %d c contains %d\n", a, b, c);
}
void main(void)
{
printf("a contains %
www.eeworm.com/read/376114/9330673
c timezone.c
#include
#include
void main(void)
{
tzset();
printf("Difference between local and GMT is %d hours\n",
timezone / 3600);
}