代码搜索:如何学习 cutoff?
找到约 10,000 项符合「如何学习 cutoff?」的源代码
代码结果 10,000
www.eeworm.com/read/124347/6052113
c strtoll_r.c
/*
This code is based on strtoul.c which has the following copyright.
It is used to convert a string into a signed long long.
long long _strtoll_r (struct _reent *rptr, const char *s,
www.eeworm.com/read/123322/6060789
cxx strtol.cxx
//===========================================================================
//
// strtol.cxx
//
// ANSI standard string to long int conversion function defined in
// section 7.10.1.5
www.eeworm.com/read/100285/6270922
c strtol.c
/*-
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted p
www.eeworm.com/read/261051/11668042
m bandpassfilter.m
% BANDPASSFILTER - Constructs a band-pass butterworth filter
%
% usage: f = bandpassfilter(sze, cutin, cutoff, n)
%
% where: sze is a two element vector specifying the size of filter
%
www.eeworm.com/read/172593/5383616
c strtol.c
/*
* Copyright (C) 2004 by egnite Software GmbH. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the followi
www.eeworm.com/read/147022/12593493
m discretize.m
function y = discretize(f, cutoff)
sze = size(f);
for i = 1:sze(1)
for k = 1:sze(2)
if (f(i,k) > cutoff)
z(i,k) = 1;
else
z(i,k) = 0;
end
end
end
www.eeworm.com/read/108728/15577837
c strtol.c
/*
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted pr
www.eeworm.com/read/192685/8360883
txt 如何分割图片.txt
你 可 以 用 PictureClip控 件 将 置 入 的 BMP图 像 分 为 Cols列 Rows行 然 后 用 GraphicCell(index)属 性 提 取 位 于 某 行 某 列 的 小 画 面 。 用 Rows 和 Cols 属 性 将 图 片 划 分 成 图 形 单 元 的 统 一 矩 阵 。 由 GraphicCell 对 指 定 单 元 进 行 索 引 , 从 0 开 始
www.eeworm.com/read/192685/8366749
txt 如何调用外设.txt
不同的外设有不同的调用方法,并没有通用的方法。对于打印机,只要你在系统中安装了正确的打印机驱动程序,就可以使用VB的Printer对象来打印。而VB没有内置的扫描仪对象,虽然扫描仪有TWain接口,但在VB中较难使用,所以一般使用许多专业控件,如LEADTools、ImageLib(http://www.imagelib.com)也支持TWain。
...
www.eeworm.com/read/291139/8439942