代码搜索:Capacity
找到约 2,190 项符合「Capacity」的源代码
代码结果 2,190
www.eeworm.com/read/456354/7351393
m ip_08_03.m
% MATLAB script for Illustrative Problem 3, Chapter 8.
echo on
a_db=[-20:0.2:20];
a=10.^(a_db/10);
for i=1:201
f(i)=quad('il3_8fun',a(i)-5,a(i)+5,1e-3,[],a(i));
g(i)=quad('il3_8fun',-a(i)-5,-a(i)+
www.eeworm.com/read/452695/7436273
c ex7_02.c
/* Exercise 7.2 Storing and displaying proverbs in order of length */
/***************************************************************************
* This program will read any number of proverbs of
www.eeworm.com/read/451351/7466885
java ex6_13.java
//6.13(显示素数)
public class Ex6_13{
public static void main (String[] args) {
StackOfIntegers st=new StackOfIntegers();
for(int i=2;i
www.eeworm.com/read/449318/7508901
m cuaveragehome2.m
%% This file will plot the average Capacity of MIMO Channels.
%% The plots will be Capacity vs SNR, Capacity VS MRx Capacity vs. NTx,
%% Capacity comparisons with othe channels
close all;
clear a
www.eeworm.com/read/449318/7508902
m capacityuncorrelatedaveragehome.m
%% This file will plot the average Capacity of MIMO Channels.
%% The plots will be Capacity vs SNR, Capacity VS MRx Capacity vs. NTx,
%% Capacity comparisons with othe channels
close all;
clear a
www.eeworm.com/read/449318/7508906
m mimocapacitymain.m
disp('Welcome To MIMO Capacity Plot, ');
disp('1- Uncorrelated');
disp('2- Correlated');
disp('3- Exit');
SelectOne=input('Input your Selection >> ');
switch SelectOne
case 1
CapacityUncorr
www.eeworm.com/read/449318/7508912
m capacityuncorrelatedaverage.m
disp('Mean Capacity for Uncorrelated Flat Fading Channels');
disp('1- Capacity vs SNR');
disp('2- Capacity vs MRx');
disp('3- Capacity vs NTx');
disp('4- MIMO Capacity vs SISO vs SIMO vs MISO');
www.eeworm.com/read/448428/7533599
h knapsack.h
#define MAXSIZE 26
#define CAPACITY 500
static int BestValue[MAXSIZE+1][CAPACITY+1];
static int Xi[MAXSIZE+1];
typedef struct
{
int Value[MAXSIZE+1];
int Weight[MAXSIZE+1];
int Capacity
www.eeworm.com/read/448428/7533600
cpp main.cpp
#include "knapsack.h"
#include
#include
void main()
{
LARGE_INTEGER t1, t2, tc;
QueryPerformanceFrequency(&tc);
KNAPSACK knapsack;
InitKnapsack(&knapsack);
Pr
www.eeworm.com/read/445133/7598751
java stackofobjects.java
/**
* @(#)StackOfObjects.java
*
*
* @author
* @version 1.00 2009/3/25
*/
public class StackOfObjects {
/**Data fields*/
private Object[] elements;
private int size;
/**