代码搜索:Capacity

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

代码结果 2,190
www.eeworm.com/read/376166/9328489

m cpg.m

clear all %parameter of DSI % cell passive parameter CmD=4.17; %uF/cm2 membrane capacity RmD=30; %M Ohs membrane resistance ElD=-40; %mV resting potential % threshold par
www.eeworm.com/read/353860/10411484

m fig26.m

% fig26.m, for the figure 2.6, pp.29 % capacity for ergodic channel by Monte-Carlo method, % the channel objection the rayleigh distribution, % Date : Dec.,2007 clear; j = sqrt(-1
www.eeworm.com/read/461382/7228228

m calculateminsnr.m

function [sim_param, sim_state] = CalculateMinSNR( sim_param, sim_state, code_param ) % CalculateThroughput determines that capacity of FSK under bandwidth % constraints, by returning min Eb/No (d
www.eeworm.com/read/451140/7470724

h rr_graph.h

enum e_graph_type { GRAPH_GLOBAL, /* One node per channel with wire capacity > 1 and full connectivity */ GRAPH_BIDIR, /* Detailed bidirectional graph */ GRAPH_UNIDIR, /* Detailed unidi
www.eeworm.com/read/241308/7808860

txt errors.txt

1. Error 1 and 2: (1). Wrong Expression: void build_wordlist (string* word_list, int capacity, string filename) { (2). Error description: Pass by value is the default parameter passing
www.eeworm.com/read/314892/13556690

java myvector.java

import java.util.*; public class MyVector extends Vector{ public MyVector(){ super(1, 1); // 指定 capacitycapacityIncrement 取值 } public void addInt(int i){ addElement(new Integer(i));
www.eeworm.com/read/303591/13812026

txt 调试实例.txt

调试结果: Some years ago I took on an assignment in a southern county to work with people on public welfare. What I wanted to do was show that everybody has the capacity to be self-sufficient and all w
www.eeworm.com/read/258131/11882807

m calculateminsnr.m

function [sim_param, sim_state] = CalculateMinSNR( sim_param, sim_state, code_param ) % CalculateThroughput determines that capacity of FSK under bandwidth % constraints, by returning min Eb/No (d
www.eeworm.com/read/472524/1409988

java alarmclock.java

public class AlarmClock { private static final int MAX_CAPACITY = 10; private static final int UNUSED = -1; private static final int NOROOM = -1; private Sleeper[] sleepers = new Sle
www.eeworm.com/read/453038/1643471

java capacitytest.java

public class CapacityTest { public static void main(String[] args) { StringBuffer sb = new StringBuffer(10); sb.append("this is a a"); System.out.println(sb.capacity()); System.out.pr