代码搜索:factor
找到约 6,651 项符合「factor」的源代码
代码结果 6,651
www.eeworm.com/read/268146/4256397
readme
Broadcom 95xx BMW CPCI Platform
Overview
=========
BMW is an MPC8245 system controller featuring:
* 3U CPCI Form Factor
* BCM5703 Gigabit Ethernet
* M48T59Y NVRAM
* 16MB DOC
* DIP Socket for Socketed
www.eeworm.com/read/253341/4396949
readme
Broadcom 95xx BMW CPCI Platform
Overview
=========
BMW is an MPC8245 system controller featuring:
* 3U CPCI Form Factor
* BCM5703 Gigabit Ethernet
* M48T59Y NVRAM
* 16MB DOC
* DIP Socket for Socketed
www.eeworm.com/read/155374/5625069
readme
Broadcom 95xx BMW CPCI Platform
Overview
=========
BMW is an MPC8245 system controller featuring:
* 3U CPCI Form Factor
* BCM5703 Gigabit Ethernet
* M48T59Y NVRAM
* 16MB DOC
* DIP Socket for Socketed
www.eeworm.com/read/395437/8173134
m qpsk_ber.m
% 编一个统计qpsk调制的误码率程序;
% clc; clear all; close all;
ray_factor=0.25;
% 发送的二进制点数;
N=10000; m=20;
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 下面的程序只设置五条多径;
%%%%%%%%%%%%%%%%%%%%%%%%%
www.eeworm.com/read/395437/8173137
m time_converge.m
% 编一个统计qpsk调制的误码率程序;
clc; clear all; close all;
ray_factor=0.25;
% 发送的二进制点数;
N=480; m=10;
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 下面的程序只设置五条多径;
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
www.eeworm.com/read/248284/12585541
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(
www.eeworm.com/read/423262/10575757
h taucs_config_build.h
/* This is an automatically generated file */
/* Configuration name: anonymous */
#define TAUCS_OSTYPE win32
#define TAUCS_VARIANT none
#define OSTYPE_win32
#define OSTYPE_VARIANT_none
#define T
www.eeworm.com/read/388457/8607952
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
www.eeworm.com/read/387887/8649395
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
www.eeworm.com/read/186987/8886049
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