首页 > 其他
Bsim3 学习笔记4
Capacitance model Depending on the magnitude of the time-varying voltages, the dynamic operation can be classified as large signal operation or small ...
分类:其他   时间:2017-01-11 14:11:12    收藏:0  评论:0  赞:0  阅读:279
bzoj1001题解
【解题思路】 显然,这题的答案是这个网格图的最小割。根据最大流-最小割定理,我们可以用网络流算法来求其最小割,时间复杂度最小为O(V2√E)(听说增广路算法会被网格图卡得很惨)。 特殊的,这个网格图是一个平面图,于是可以根据平面图最小割-最短路定理,转化为其对偶图的最短路,时间复杂度最小为O(kE) ...
分类:其他   时间:2017-01-11 14:10:59    收藏:0  评论:0  赞:0  阅读:306
LeetCode Integer Replacement
原题链接在这里:https://leetcode.com/problems/integer-replacement/ 题目: Given a positive integer n and you can do operations as follow: What is the minimum num ...
分类:其他   时间:2017-01-11 14:10:30    收藏:0  评论:0  赞:0  阅读:187
Bsim3 学习笔记12
Model Parameter Extraction 提取 There are two different optimization strategies which can be used for parameter extraction: global optimization and loca ...
分类:其他   时间:2017-01-11 14:09:37    收藏:0  评论:0  赞:0  阅读:214
为什么需要内存屏障【转】
转自:http://blog.csdn.net/chen19870707/article/details/39896655 Author:Echo Chen(陈斌) Email:chenb19870707@gmail.com Blog:Blog.csdn.net/chen19870707 Date: ...
分类:其他   时间:2017-01-11 14:08:57    收藏:0  评论:0  赞:0  阅读:240
边界值分析方法
一.方法简介 1.定义:边界值分析法就是对输入或输出的边界值进行测试的一种黑盒测试方法。通常边界值分析法是作为对等价类划分法的补充,这种情况下,其测试用例来自等价类的边界。 2.与等价划分的区别 1)边界值分析不是从某等价类中随便挑一个作为代表,而是使这个等价类的每个边界都要作为测试条件。 2)边界 ...
分类:其他   时间:2017-01-11 14:07:36    收藏:0  评论:0  赞:0  阅读:231
ftp命令详解补充
加上目录和完整的路径 ...
分类:其他   时间:2017-01-11 14:07:18    收藏:0  评论:0  赞:0  阅读:125
Bsim3 学习笔记2
Threshold voltage model Vth对器件操作有三种操作区: Vg>>Vth in strong inversion region, drift current is dominant. Vg<<Vth in weak inversion region, diffusion cur ...
分类:其他   时间:2017-01-11 14:06:27    收藏:0  评论:0  赞:0  阅读:137
Bsim3 学习笔记8
Temperature Dependence Model A number of important model parameters such as mobility, threshold voltage, saturation velocity, parasitic series resista ...
分类:其他   时间:2017-01-11 14:06:02    收藏:0  评论:0  赞:0  阅读:188
Bsim3 学习笔记13
RF and Other Compact Model Applications In this chapter, we discuss some examples of new applications using BSIM3v3 in RF modeling, statistical modeli ...
分类:其他   时间:2017-01-11 14:05:18    收藏:0  评论:0  赞:0  阅读:207
Bsim3 学习笔记10
BSIM3v3 Model Implementation The enhancement of the continuity and smoothness of the BSIM3v3 model equations has been discussed in Chapter 4. In this ...
分类:其他   时间:2017-01-11 14:03:09    收藏:0  评论:0  赞:0  阅读:578
购物车 抛物线
代码 ...
分类:其他   时间:2017-01-11 14:02:51    收藏:0  评论:0  赞:0  阅读:226
BZOJ2741[FOTILE模拟赛]L
Description FOTILE得到了一个长为N的序列A,为了拯救地球,他希望知道某些区间内的最大的连续XOR和。 即对于一个询问,你需要求出max(Ai xor Ai+1 xor Ai+2 ... xor Aj),其中l<=i<=j<=r。 为了体现在线操作,对于一个询问(x,y): l=mi ...
分类:其他   时间:2017-01-11 14:02:31    收藏:0  评论:0  赞:0  阅读:227
Bsim3 学习笔记3
I-V model Channel charge and mobility, which are the two key factors influencing the I-V characteristics. The drift current components due to the elec ...
分类:其他   时间:2017-01-11 14:02:15    收藏:0  评论:0  赞:0  阅读:162
Bsim3 学习笔记7
Source/Drain Parasitics Model 源漏寄生模型 Parasitic Components in a MOSFET the gate resistance Rg gate/source overlap capacitance Cgso gate/drain overlap c ...
分类:其他   时间:2017-01-11 14:00:44    收藏:0  评论:0  赞:0  阅读:217
debian 系统修改密码
1、在Grub的引导装载程序菜单上,选择你要进入的条目,键入 “e” 来进入编辑模式。2、在第二行(类似于kernel /vmlinuz-2.6.15 ro root=/dev/hda2 ),键入”e”进入编辑模式;3、在句末加上”init=/bin/bash”,回车;4、按“b”启动系统。这样我们 ...
分类:其他   时间:2017-01-11 14:00:28    收藏:0  评论:0  赞:0  阅读:469
JqGrid在行中自定义自己的东西
1 $.fn.fmatter.actions = function(cellval, opts) { 2 function baseOption(obj) { 3 return { 4 url: obj.url || '', 5 icon: obj.icon || '', 6 text: obj.t ...
分类:其他   时间:2017-01-11 13:59:35    收藏:0  评论:0  赞:0  阅读:273
求DNA序列中各个碱基的含量
方法很简单,用count就可以了, ...
分类:其他   时间:2017-01-11 13:59:11    收藏:0  评论:0  赞:0  阅读:159
ruby
2.3.1. 空格除了换行符之外,ASCII空格(0x20)是唯一合法的空格字符。这意味着所有在源代码中(包括字符、字符串以及注释中)出现的其他空格字符需要转义,例如Tab用\t表示。缩进必须使用空格而不是Tab 3. 源文件组织结构源文件必须按顺序由以下部分组成:许可证(License)或版权声明 ...
分类:其他   时间:2017-01-11 13:58:14    收藏:0  评论:0  赞:0  阅读:172
边界值
根据大量的测试统计数据,很多错误是发生在输入或输出范围的边界上,而不是发生在输入/输出范围的中间区域。因此针对各种边界情况设计测试用例,可以查出更多的错误。 比如一个文本框的可输入字符长度为0~15,那么咱们在测试的时候就会习惯性的输入0个或者16个以上的字符,试试程序会不会报错,因为直觉告诉我们这 ...
分类:其他   时间:2017-01-11 13:57:42    收藏:0  评论:0  赞:0  阅读:104
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!