代码搜索:factor
找到约 6,651 项符合「factor」的源代码
代码结果 6,651
www.eeworm.com/read/213248/15139204
frm form03.frm
VERSION 5.00
Object = "{9BD6A640-CE75-11D1-AF04-204C4F4F5020}#2.0#0"; "mo20.ocx"
Begin VB.Form Form03
Caption = "Factor演示"
ClientHeight = 3825
ClientLeft = 60
www.eeworm.com/read/490329/1201515
inl vector_fpu.inl
inline void hk_VecFPU::fpu_add_multiple_row(hk_real *target_adress,hk_real *source_adress,hk_real factor,int size,hk_bool adress_aligned) {
if(adress_aligned==HK_FALSE) {
//we have to calcula
www.eeworm.com/read/490329/1201534
h vector3_util.h
#ifndef HK_MATH_VECTOR3_UTIL
#define HK_MATH_VECTOR3_UTIL
class hk_Vector3_Util
{
public:
// can highly be optimized for PS2
static inline void mult_and_add2( hk_Vector3 &v, hk_real factor,
www.eeworm.com/read/455463/1614221
m sprat.m
function q=sprat(A1,A2,f,t1,t2,fsmo)
% q=sprat(A1,A2,f,t1,t2,fsmo)
%
% SPRAT applies the spectral ratio method to estimate an apparent
% interval attenuation factor, q, between the traces (wavelets)
www.eeworm.com/read/249482/4449834
dat vb_fun20b.dat
语法
----
DDB(cost, salvage, life, period[, factor])
DDB 函数具有下列命名参数:
部分 描述
cost 必要.Double 指定资产的初始成本.
salvage 必要.Double 指定使用年限结束时的资产价值.
life 必要.Double 指定资产可
www.eeworm.com/read/237118/4631930
c mpegaudgentab.c
#include "mpegaudiodec.h"
/* This file is generated. Edits may be lost. */
uint32_t scale_factor_modshift[64] =
{
0, 1, 2, 4, 5, 6, 8, 9, 10, 12, 13, 14, 16, 17, 18, 20,
21, 22, 24, 25, 26, 28,
www.eeworm.com/read/225179/4799089
java dao.java
/*
* 创建日期 2005-10-2
*
* TODO 要更改此生成的文件的模板,请转至
* 窗口 - 首选项 - Java - 代码样式 - 代码模板
*/
package dao;
import model.Student;
import model.Team;
import org.springframework.beans.factor
www.eeworm.com/read/334933/3360404
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);
stem(n,x
www.eeworm.com/read/334933/3360407
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('Input Seq
www.eeworm.com/read/334933/3360475
m p10_2.m
% Program P10_2
% Illustration of Down-Sampling by an Integer Factor
%
clf;
n = 0: 49;
m = 0: 50*3 - 1;
x = sin(2*pi*0.042*m);
y = x([1 : 3 : length(x)]);
subplot(2,1,1)
stem(n, x(1:50)); axi