代码搜索结果
找到约 3,568 项符合
Strip 的代码
strip.m
%STRIP Creates a dipole antenna (thin strip) in the
% xz-plane (not the xy-plane as it was in Chapter 4!)
%
% The following parameters need to be specified:
%
% Strip width (along the x-ax
strip.m
function net = strip(net, tolerance)
if nargin == 1
tolerance = 1e-12;
end
idx = find(abs(net.w) > tolerance);
net.sv = net.sv(idx,:);
net.w = net.w(idx);
strip.m
function net = strip(net, tolerance)
if nargin == 1
tolerance = 1e-12;
end
idx = find(abs(net.w) > tolerance);
net.sv = net.sv(idx,:);
net.w = net.w(idx);
if_strip.h
/*
* if_strip.h --
*
* Definitions for the STRIP interface
*
* Copyright 1996 The Board of Trustees of The Leland Stanford
* Junior University. All Rights Reserved.
*
* Permission to use,
strip.pl
#!/usr/bin/perl -w
open(IN,$ARGV[0] );
while ( ) {
s/std:://g;
print $_;
}
strip.m
function net = strip(net, tolerance)
% STRIP
%
% Delete support vectors from a support vector classification network for which
% the magnitude of the corresponding weight is less than a given to