代码搜索:C语言基础
找到约 10,000 项符合「C语言基础」的源代码
代码结果 10,000
www.eeworm.com/read/400249/11580040
txt downcode.com.txt
╭══════════════════════════════════════════╮
║ 源易网--中国源码下载站 ║
║
www.eeworm.com/read/400249/11580041
txt downcode.com.txt
╭══════════════════════════════════════════╮
║ 源易网--中国源码下载站 ║
║
www.eeworm.com/read/259017/11826809
c x76f100.c
#include
#include "I2C.h"
#include "X76F100.h"
#define CS BIT0
#define RST BIT7
char pResetBuf[4];
//设备码 100
void writeX76F100(int addr,char pWritePassBuf[],char pBuf[]
www.eeworm.com/read/155948/11836979
txt algorithm.txt
a+b+c+d
a+b+c-d
a+b-c-d
a*b+c*d
a*b-c*d
a*b*c+d
a*c*b-d
a*b*c/d
a*b+c+d
a*b+c-d
a*b-c-d
(a+b)*(c+d)
(a+b)*(c-d)
(a-b)*(c-d)
a*b*(c-d)
a*b*(c+d)
a*b/(c+d)
a*b/(c-d)
a*b/(c*d)
(a+b+c)
www.eeworm.com/read/152439/12113702
m anisdiff.m
function Is = anisdiff(I,sigI,NIter);
if nargin < 3,
NIter = 4;
if nargin < 2,
sigI = 10;
end;
end;
% Function that diffuse an image anisotropially.
Is = I;
[ny,nx] = size(I)
www.eeworm.com/read/151611/12187469
c i2c.c
/*
//*************************************************************************
//
// P H I L I P S P R O P R I E T A R Y
//
// COPYRIGHT (c) 1999 BY
www.eeworm.com/read/339620/12216950
m anisdiff.m
function Is = anisdiff(I,sigI,NIter);
if nargin < 3,
NIter = 4;
if nargin < 2,
sigI = 10;
end;
end;
% Function that diffuse an image anisotropially.
Is = I;
[ny,nx] = size(I)
www.eeworm.com/read/128477/14294571
m to_c.m
function deg_c = to_c(deg_f)
% Convert degrees Fahrenheit to degrees C.
deg_c = (5/9) * (deg_f - 32);