代码搜索:deviation
找到约 1,443 项符合「deviation」的源代码
代码结果 1,443
www.eeworm.com/read/261324/11654905
m aalognormalpdf.m
function[y]=aalognormalpdf(m,s,N)
%function[yln]=aalognormalpdf(m,s,N)
%m=mean value;s=standard deviation;N=number of samples;
for i=1:N
r1=rand;
r2=rand;
z(i)=sqrt(-2*log(r1))*cos
www.eeworm.com/read/157356/11717653
m normal.m
function y=normal(x,m,s)
% FUNCTION y=NORMAL(x,m,s)
% Gaussian distribution
% m=mean
% s=standard deviation
y=(1/sqrt(2*pi*s^2))*exp(-((x-m).^2)/(2*s^2));
www.eeworm.com/read/156459/11801365
cpp d9r1.cpp
#include "iostream.h"
#include "stdlib.h"
#include "math.h"
void main()
{
//program d9r1
//driver for routine fit
int i,mwt,npt = 100;
double spread = 0.5;
double x[101]
www.eeworm.com/read/156266/11815308
m normal.m
function y=normal(x,m,s)
% FUNCTION y=NORMAL(x,m,s)
% Gaussian distribution
% m=mean
% s=standard deviation
y=(1/sqrt(2*pi*s^2))*exp(-((x-m).^2)/(2*s^2));
www.eeworm.com/read/257997/11896961
m kalman.m
% function [E3,deviation2,D1]=kalman
%P0:Initialized deviation matrix
%X0:Initialized states vector
%H:measurement matrix
%T:Transfer matrix
%Q,R:Deviation of system noise and measurement noise
www.eeworm.com/read/257010/11960815
m chp12ex3.m
PL = 0.2;
KI = 7;
numc = [0.1 0.7 1 0];
denc = [1 7.08 10.56 20.8 KI];
t = 0:.02:12;
c=-PL*step(numc, denc, t);
plot(t, c), grid
xlabel('t, sec'), ylabel('pu')
title('Frequency deviation
www.eeworm.com/read/154209/11983253
m strips.m
function h = strips(x,sd,Fs,scale)
%STRIPS Strip plot.
% STRIPS(X) plots vector X in horizontal strips of length 250.
% If X is a matrix, STRIPS(X) plots each column of X in horizontal
% st
www.eeworm.com/read/343002/11984589
java agentvariants.java
package asm;
/**
* Title: Artificial Stock Market
* Description: 人工模拟股市(来源:SFI的Swarm版本)的Java版本
* Copyright: Copyright (c) 2003
* Company: http://agents.yeah.net
* @author jake
*
www.eeworm.com/read/152597/12100132
m add_noise.m
function[sigma] = add_noise(waveform, EbN0db, rate, a) % waveform is input data, EbNOdb is set by user, rate is the data rate, a is fam.
en = 10^(EbN0db/10); % convert Eb/N0 from unit db to n
www.eeworm.com/read/152597/12100136
asv add_noise.asv
function[x] = add_noise(waveform, EbN0db, rate, a) % waveform is input data, EbNOdb is set by user, rate is the data rate, a is fam.
en = 10^(EbN0db/10); % convert Eb/N0 from unit db to norma