代码搜索:Capacity

找到约 2,190 项符合「Capacity」的源代码

代码结果 2,190
www.eeworm.com/read/477716/6732792

c queue.c

#include "queue.h" #include "fatal.h" #include #define MinQueueSize ( 5 ) struct QueueRecord { int Capacity; int Fr
www.eeworm.com/read/476907/6754389

m ip_08_03.m

% MATLAB script for Illustrative Problem 8.3. clear 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
www.eeworm.com/read/264889/11296597

cpp 6_72.cpp

#include #include using namespace std; void DispInfo( const string & ); int main() { string str; cout
www.eeworm.com/read/264424/11315364

h my stack.h

#ifndef _STACK_H #define _STACK_H #include template class CMyStack { T* elems; long index; long capacity; public: CMyStack(){ index = 0; capacity
www.eeworm.com/read/264423/11315371

h stack.h

#ifndef _STACK_H #define _STACK_H #include template class Stack { T* elems; long index; long capacity; public: Stack(){ index = 0; capacity = 100;
www.eeworm.com/read/264397/11316440

cpp 背包问题扩展一.cpp

#include using namespace std; int main(){ int n; coutn; int *Weight=new int[n]; int Capacity; cout
www.eeworm.com/read/264397/11316443

cpp packetproblem.cpp

/* 我真诚地保证 我自己独立地完成了整个程序从分析、设计到编码的所有工作。 如果在上述过程中,我遇到了什么困难而求教于人,那么,我将在程序实习报告中 详细地列举我所遇到的问题,以及别人给我的提示。 我的程序里中凡是引用到其他程序或文档之处, 我都已经在程序的注释里很清楚地注明了引用的出处。 我从未抄袭过别人的程序,也没有盗用别人的程序, 不管是修改式的抄袭还是 ...
www.eeworm.com/read/408395/11390098

svd equip.svd

SV0040 @Equipment0 Name = Light phaser bank Type = 1 Mass = 5 Colour = 7 Sound = 28 Power = 80 CycleTime = 8 Range = 15 Tracking = 80 Coverage = 100 Cost = 50 @Equipment1 Name = Standard phaser bank
www.eeworm.com/read/262665/11396115

java linknode.java

public class LinkNode { private Node root; private int capacity; private char ending; public LinkNode() { root=new Node(); } public void initLinkNod
www.eeworm.com/read/406944/11432012

m ccdf_test.m

% ccdf test clear; clc; Capacity=zeros(1,100); for mm=1:100 H=sqrt(1/2)*randn(4)+j*sqrt(1/2)*randn(4); Q=H*(H'); Capacity(mm)=log2(det(eye(4)+10^1.5/4*Q)); end Capacity=real(Capacity)/4; plo