-
Acvooding
说明: 根据蒙特卡罗仿真原理,对QPSK及QDPSK进行误码率仿真分析里面有7个程序(According to Monte Carlo simulation principle, there are 7 programs in BER simulation analysis of QPSK and QDPSK.)
- 2019-03-28 05:37:53下载
- 积分:1
-
使用camera拍照源码下载(自定义camera类)
自定义camera进行拍照
- 2014-05-15下载
- 积分:1
-
CreatePulleyJoint
滑轮关节,Android开发精典案例源码,很好的参考资料。(The pulley joint, Android development of classical case of source code, a good reference.)
- 2013-11-12 00:14:46下载
- 积分:1
-
demo7Intent
Android app for activity (Android app)
- 2016-06-02 12:33:24下载
- 积分:1
-
Basedonthetheoryofcognitiveradiospectrumallocation
说明: 本文详尽的介绍了认知无线电中的动态频谱分配技术,研究了基于博弈论的认知无线电频谱分配模型(Basedonthetheoryofcognitiveradiospectrumallocationmodel)
- 2021-03-16 22:39:21下载
- 积分:1
-
android联系人带字母检索源码
android联系人带字母检索源码/** * 联系人列表适配器。 * * @author guolin */public class ContactAdapter extends ArrayAdapter { /** * 需要渲染的item布局文件 */ private int resource; /** * 字母表分组工具 */ private SectionIndexer mIndexer; public ContactAdapter(Context context, int textViewResourceId, List objects) { super(context, textViewResourceId, objects); resource = textViewResourceId; } @Override public View getView(int position, View convertView, ViewGroup parent) { Contact contact = getItem(position); LinearLayout layout = null; if (convertView == null) { layout = (LinearLayout) LayoutInflater.from(getContext()).inflate(resource, null); } else { layout = (LinearLayout) convertView; } TextView name = (TextView) layout.findViewById(R.id.name); LinearLayout sortKeyLayout = (LinearLayout) layout.findViewById(R.id.sort_key_layout); TextView sortKey = (TextView) layout.findViewById(R.id.sort_key); name.setText(contact.getName()); int section = mIndexer.getSectionForPosition(position); if (position == mIndexer.getPositionForSection(section)) { sortKey.setText(contact.getSortKey()); sortKeyLayout.setVisibility(View.VISIBLE); } else { sortKeyLayout.setVisibility(View.GONE); } return layout; } /** * 给当前适配器传入一个分组工具。 * * @param indexer */ public void setIndexer(SectionIndexer indexer) { mIndexer = indexer; }}
- 2014-04-13下载
- 积分:1
-
最近公司在做即时通讯 仿微信 QQ的
最近公司在做即时通讯 仿微信 QQ的
- 2014-10-17下载
- 积分:1
-
MPPt
说明: (有电路图)基于模糊控制的太阳能MPPT充电控制器的研究与实现.((With circuit) based on fuzzy control MPPT solar charge controller and its implementation.)
- 2011-04-17 17:19:24下载
- 积分:1
-
windows api 大全(比较全)下载
主要是系统的windows api原型 chm文档, win8系统打开的话,右键该文件>>属性>>解除锁定>>应用, 然后 打开该文件即可查看
- 2015-02-04下载
- 积分:1
-
java图书管理系统完整代码
运行于Android studio的java代码,有完整数据库,需要连接navicat,只要修改DB.properties代码里的你的navicat密码即可,若没有密码,则是password= ,这是非常好,没有任何错误的图书管理系统代码
- 2016-10-10下载
- 积分:1