代码搜索:func
找到约 10,000 项符合「func」的源代码
代码结果 10,000
www.eeworm.com/read/428326/8876035
py func_local.py
#文件名:func_local.py
def func(x):
print 'x 是', x
x = 2
print '局部变量 x 变成了', x
x = 50
func(x)
print 'x 仍然是', x
www.eeworm.com/read/428326/8876050
py func_default.py
#文件名:func_default.py
def say(message, times = 1):
print message*times
say('Hello')
say('World', 5)
www.eeworm.com/read/428326/8876051
py func_doc.py
#文件名:func_doc.py
def printMax(x, y):
'''输出两个数中的大数。
两个数均要求为整数.'''
x = int(x) # convert to integers, if possible
y = int(y)
if x > y:
print x, 'is maximum'
www.eeworm.com/read/428326/8876055
py func_key.py
#文件名:func_key.py
def func(a, b = 5, c = 10):
print 'a 是', a, ' b 是', b, ' c 是', c
func(3, 7)
func(25, c = 24)
func(c = 50, a = 100)
www.eeworm.com/read/428326/8876068
py func_return.py
#文件名:func_return.py
def maximum(x, y):
if x > y:
return x
else:
return y
print maximum(2, 3)
www.eeworm.com/read/384347/8878893
html globals_func.html
AVR321000 Communication with the AVR32 USART:
www.eeworm.com/read/187002/8884153
c use_func.c
#include
void hello_world(void)
{
printf("Hello, world!\n");
}
void main(void)
{
hello_world();
}
www.eeworm.com/read/427678/8925824
m func_dwt.m
function [I_W , S] = func_DWT(I, level, type);
%
% Wavelet decomposition
%
% input: I : input image
% level : wavelet decomposition level
% type : wavelet used for the dec
www.eeworm.com/read/427678/8925837
m func_invdwt.m
function im_rec = func_InvDWT(I_W, S, type, level);
%
% Inverse wavelet decomposition
%
% input: I_W : decomposed image vector
% S : corresponding bookkeeping matrix
% typ