代码搜索:factor
找到约 6,651 项符合「factor」的源代码
代码结果 6,651
www.eeworm.com/read/38039/1091830
mnu catia5_cgr.mnu
CATIA5#CGR CATIA5#CGR
# remove the # sign and enter foreign help string in this line
Chord#Height 弦高
Specify maximum allowable chord height.
指定允许的最大弦高。
AngleControl 角度控制
Specify angle control factor
www.eeworm.com/read/208399/4993410
cpp lightengine.cpp
#include "../../lib/Fly3D.h"
#include "lightengine.h"
#include "Commctrl.h"
#include
#include
#include
#define LIGHT_FACTOR 5000
#define ANGLE_THRESHOLD 0.99f
www.eeworm.com/read/334933/3360477
m p10_5.m
% Program P10_5
% Illustration of Decimation Process
%
clf;
M = input('Down-sampling factor = ');
n = 0:99;
x = sin(2*pi*0.043*n) + sin(2*pi*0.031*n);
y = decimate(x,M,'fir');
subplot(2,1,1);
www.eeworm.com/read/334861/3361631
cc calcfactor.cc
#include "normaldistribution3d.ih"
void NormalDistribution3D::calcFactor()
{
// d_factor = 1.0 / (pow(2 * M_PI, 1.5) * sqrt(d_determinant));
static double const pipow(pow(2 * M_PI, 1.5));
d_facto
www.eeworm.com/read/324450/3502704
cc calcfactor.cc
#include "normaldistribution3d.ih"
void NormalDistribution3D::calcFactor()
{
// d_factor = 1.0 / (pow(2 * M_PI, 1.5) * sqrt(d_determinant));
static double const pipow(pow(2 * M_PI, 1.5));
d_facto
www.eeworm.com/read/301474/3839577
m p10_5.m
% Program P10_5
% Illustration of Decimation Process
%
clf;
M = input('Down-sampling factor = ');
n = 0:99;
x = sin(2*pi*0.043*n) + sin(2*pi*0.031*n);
y = decimate(x,M,'fir');
subplot(2,1,1);
www.eeworm.com/read/448886/1683485
m p10_5.m
% Program P10_5
% Illustration of Decimation Process
%
clf;
M = input('Down-sampling factor = ');
n = 0:99;
x = sin(2*pi*0.043*n) + sin(2*pi*0.031*n);
y = decimate(x,M,'fir');
subplot(2,1,1);
www.eeworm.com/read/378914/2679307
m p10_5.m
% Program P10_5
% Illustration of Decimation Process
%
clf;
M = input('Down-sampling factor = ');
n = 0:99;
x = sin(2*pi*0.043*n) + sin(2*pi*0.031*n);
y = decimate(x,M,'fir');
subplot(2,1,1);
www.eeworm.com/read/248284/12585529
m p10_5.m
% Program P10_5
% Illustration of Decimation Process
%
clf;
M = input('Down-sampling factor = ');
n = 0:99;
x = sin(2*pi*0.043*n) + sin(2*pi*0.031*n);
y = decimate(x,M,'fir');
subplot(2,1,1);
www.eeworm.com/read/388457/8607974
m p10_1.m
% Program 10_1
% Illustration of Up-Sampling by an Integer Factor
%
clf;
n = 0:50;
x = sin(2*pi*0.12*n);
y = zeros(1, 3*length(x));
y([1: 3: length(y)]) = x;
subplot(2,1,1)
stem(n,x);
title(