代码搜索:prepare 有哪些应用?
找到约 10,000 项符合「prepare 有哪些应用?」的源代码
代码结果 10,000
www.eeworm.com/read/180440/9307938
c prepare_pcap.c
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2
www.eeworm.com/read/365492/9861214
m prepare_savedata.m
function [SaveData,maxNum]= prepare_savedata(FinalResults,handles,hObject);
% Retreive old data structure
% handles.menu_saveasflag
if (isfield(handles,'SaveData') & ~isempty(handles.Sa
www.eeworm.com/read/365492/9861289
m prepare_comparelist.m
function [promptstr]= prepare_comparelist(maxNum,SaveData)
promptstr={};
for ResultNum=1:(maxNum+1)
if(SaveData(ResultNum).preprocessid==1)
DataPreprocess='Remove Mean ';
elseif
www.eeworm.com/read/360732/10080577
m nn_prepare.m
%tstoolbox/mex/nn_prepare
% The intention of this mex-file was to reduce the computational
% overhead of preprocessing for nearest neighbor or range searching.
% With nn_prepare it is possible t
www.eeworm.com/read/360732/10080589
dll nn_prepare.dll
www.eeworm.com/read/425765/10325909
doc prepare for interviews.doc
www.eeworm.com/read/417866/10973558
m prepare_database.m
clear all
clc
close all
database_latih_dft=double(zeros(480,640,36));
for m=1:36
image=imread(sprintf('latih%d.bmp',m));
image=rgb2gray(image);
image=imadjust(image);
image=med
www.eeworm.com/read/417108/11003269
mak prepare-source.mak
conf: configure.sh config.h.in
configure.sh: configure.in aclocal.m4
autoconf -o configure.sh
config.h.in: configure.in aclocal.m4
autoheader && touch config.h.in
www.eeworm.com/read/443653/7629388
m prepare_housing.m
data = load('housing.data');
% make X and y matrices
[n,d] = size(data);
X = data(:, 1:d-1);
y = data(:,d);
% standardize feature values and center target
mu_y = mean(y);
y = y - mu_y;
[X, mu, s