代码搜索:std
找到约 10,000 项符合「std」的源代码
代码结果 10,000
www.eeworm.com/read/451369/7466735
m std.m
function rou=std(cc)
[m0,m1]=size(cc);
temp1=0;
temp2=mean(cc);
for i=1:m0
temp1=temp1+(cc(i)-temp2)*(cc(i)-temp2);
end
temp1=temp1/m0;
rou=sqrt(temp1);
www.eeworm.com/read/448825/7525186
asm std.asm
include body.inc
include usbrf1.inc
include usbfifo.inc
extern baddr_state :bit
extern bRmtWakeup :bit
extern bFIFO_Full :bit
extern bSend_Continue :bit
extern brd_h_table :bit ;
www.eeworm.com/read/448825/7525203
obj std.obj
www.eeworm.com/read/444321/7614120
std makefile.std
#
# Makefile for webalizer - a web server logfile analysis thingie
#
# (c)1997-2000 by Bradford L. Barrett (brad@mrunix.net)
# Distributed under the GNU GPL. See "README" and "Copyright"
# files suppl
www.eeworm.com/read/442119/7658858
std actions.std
#
# Shorewall version 4 - Actions.std File
#
# /usr/share/shorewall/actions.std
#
# Please see http://shorewall.net/Actions.html for additional
# information.
#
# Builtin Actions are:
#
# allowBcas
www.eeworm.com/read/441245/7672813
m std.m
%STD Dataset overload
%
% [S,U] = STD(A,FLAG,DIM)
%
% Computes std. dev. S and mean U in a single run for consistency with datafile overload.
www.eeworm.com/read/441245/7672941
p std.p
www.eeworm.com/read/441245/7673105
m std.m
%STD Datafile overload
%
% [S,U] = STD(A,FLAG,DIM)
%
% Computes std. dev. S and mean U in a single run for speed.
www.eeworm.com/read/441245/7673182
p std.p
www.eeworm.com/read/399588/7845739
h std.h
#include
class Date;
class Time
{
public:
Time(int,int,int);
friend void display(const Time&,const Date&);
private:
int hour;
int minute;
int sec;
};
class Date
{
pu