代码搜索:func
找到约 10,000 项符合「func」的源代码
代码结果 10,000
www.eeworm.com/read/290963/8446511
m func_morton.m
function scan = func_morton(pos,n);
% The matrix should be n by n
% For position we start counting from 0
%
% position = [0:(n*n)-1];
% scan = morton(position, n);
% Copyright 2002 Pasch
www.eeworm.com/read/290963/8446519
m func_dwt.m
function [I_W , S] = func_DWT(I, level, Lo_D, Hi_D);
% Matlab implementation of SPIHT (without Arithmatic coding stage)
%
% Wavelet decomposition
%
% input: I : input image
% level
www.eeworm.com/read/290963/8446535
m func_invdwt.m
function im_rec = func_InvDWT(I_W, S, Lo_R, Hi_R, level);
% Matlab implementation of SPIHT (without Arithmatic coding stage)
%
% Inverse wavelet decomposition
%
% input: I_W : decomposed image
www.eeworm.com/read/290963/8446562
m func_treemask.m
function mask = func_treemask(x,y,dim);
% x, y is the position in the matrix of the node where the EZW tree
% should start; top left is x=1 y=1
%
% dim is the dimension of the mask (should be
www.eeworm.com/read/189319/8475494
html functions_func.html
Apache Portable Runtime: Compound Member In
www.eeworm.com/read/189319/8475568
html globals_func.html
Apache Portable Runtime: File Member Index
www.eeworm.com/read/290380/8486107
c use_func.c
#include
void hello_world(void)
{
printf("Hello, world!\n");
}
void main(void)
{
hello_world();
}
www.eeworm.com/read/390081/8486720
c gcc-func.c
tree convert (type, expr)
tree type, expr;
{
register tree e = expr;
register enum tree_code code = TREE_CODE (type);
if (type == TREE_TYPE (expr) || TREE_CODE (expr) == ERROR_MARK)
re
www.eeworm.com/read/289561/8544364
m func1.m
%该函数实现的功能是:路由矩阵的初始化
function [r0]=func1(x,n) %x为图的原始距离矩阵 ,n是矩阵的大小
r0=zeros(n,n); %生成一个n x n的零矩阵
for i=1:1:n
for j=1:1:n
if x(i,j)==100