代码搜索:Capacity
找到约 2,190 项符合「Capacity」的源代码
代码结果 2,190
www.eeworm.com/read/384965/8826678
h istack.h
#ifndef ISTACK_H
#define ISTACK_H
#include
using std::vector;
#include "stckexcp.h"
class iStack {
public:
iStack( int capacity )
: _stack( capacity ), _to
www.eeworm.com/read/187145/8853356
h rvvector.h
#if (0)
******************************************************************************
Filename : rvvector.h
Description :
The following pseudo C++ prototypes describe the RvVector interface
www.eeworm.com/read/381752/9073561
cpp chapter6-6.cpp
//文件名:CHAPTER6-6.cpp
#pragma warning(disable:4786)
#include
#include
using namespace std ;
typedef vector INTVECTOR;
void main()
{
INTVECTOR thevector;
thevec
www.eeworm.com/read/183383/9160605
m channelcapacity_batch.m
%% Channel Capacity of MIMO
clear;
clc;
results=zeros(51,5);
Re_CorrelationMatrix=zeros(4,4,51);
for mm=1:4
Re_CorrelationMatrix(mm,mm,:)=1;
end
Coefficient_1_2=zeros(1,51);
Coeffi
www.eeworm.com/read/183383/9160610
m channelcapacity.m
%% Channel Capacity of MIMO
temp=180/2/180*pi;
Coefficient_1_2=quadv(@CorrCoe_1_2,-temp,temp)/2/temp;
Coefficient_1_3=quadv(@CorrCoe_1_3,-temp,temp)/2/temp;
Coefficient_1_4=quadv(@CorrCoe_1_4,-
www.eeworm.com/read/375810/9349065
m waterfilling.m
% Author: Zukang Shen and Ian C. Wong
% Copyright (C) 2004 Ian C. Wong
%
% This program is free software; you can redistribute it and/or
% modify it under the terms of the GNU General Public
www.eeworm.com/read/373028/9477565
java fig1-4.java
import java.io.*;
import java.util.Vector;
class Node {
Node(String s, int a) {
name = s;
age = a;
}
Node() {
this("",0);
}
public boolean equal
www.eeworm.com/read/372108/9521611
cpp 17-1.cpp
//
// Example from Item 17
//
// Fails under MSVC/native lib, g++ (string lacks push_back)
//
#include
#include
#include "ESTLUtil.h"
class Contestant { };
int m
www.eeworm.com/read/416348/10002049
cpp ep11_3.cpp
/*11.3 编程测试顺序容器矢量(vector)的主要功能名和使用方法。(参考附录C,下同)*/
#include
#include
#include
#include
using namespace std;
int main(){
ostream_iteratoroutput(co