登录
首页 » MultiPlatform » gathsrkernel

gathsrkernel

于 2019-03-26 发布 文件大小:112KB
0 234
下载积分: 1 下载次数: 0

代码说明:

  LDPC校验矩阵生成,高斯消去法编码,BP译码程序,可以作为自己编写LDPC编译码程序的参考,因为matlab代码效率不高(The LDPC check matrix generation, the Gaussian elimination method and the BP decoding program can be used as the reference of the LDPC coding program, because the matlab code efficiency is not high.)

文件列表:

zEVALDVBS2_STMICROELECTRONICS_130762.pdf, 130762 , 2008-05-13

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 网络获取图片(缓存)
    package com.hsx.imageloader.adapter;import android.content.Context;import android.view.LayoutInflater;import android.view.View;import android.view.ViewGroup;import android.widget.BaseAdapter;import android.widget.ImageView;import android.widget.TextView;import com.hsx.imageloader.listener.AnimateFirstDisplayListener;import com.nostra13.universalimageloader.core.DisplayImageOptions;import com.nostra13.universalimageloader.core.ImageLoader;import com.nostra13.universalimageloader.core.assist.ImageLoadingListener;import com.nostra13.universalimageloader.core.display.RoundedBitmapDisplayer;import com.hsx.imageloader.R;public class ItemAdapter extends BaseAdapter {DisplayImageOptions options;private ImageLoadingListener animateFirstListener = new AnimateFirstDisplayListener();String[] imageUrls;Context context;public ItemAdapter(String[] imageUrls, Context context) {super();this.imageUrls = imageUrls;this.context = context;options = new DisplayImageOptions.Builder().showStubImage(R.drawable.ic_launcher)//设置图片在下载期间显示的图片.showImageForEmptyUri(R.drawable.ic_launcher)//设置图片Uri为空或是错误的时候显示的图片.showImageOnFail(R.drawable.ic_launcher)//设置图片加载/解码过程中错误时候显示的图片.cacheInMemory(true)//是否緩存都內存中.cacheOnDisc(true)//是否緩存到sd卡上.displayer(new RoundedBitmapDisplayer(20)).build();}private class ViewHolder {public TextView text;public ImageView image;}@Overridepublic int getCount() {return imageUrls.length;}@Overridepublic Object getItem(int position) {return position;}@Overridepublic long getItemId(int position) {return position;}@Overridepublic View getView(final int position, View convertView, ViewGroup parent) {final ViewHolder holder;if (convertView == null) {LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);convertView = inflater.inflate(R.layout.item_list_image, parent, false);holder = new ViewHolder();holder.text = (TextView) convertView.findViewById(R.id.text);holder.image = (ImageView) convertView.findViewById(R.id.image);convertView.setTag(holder);} else {holder = (ViewHolder) convertView.getTag();}holder.text.setText("Item " (position 1));// ImageLoaderImageLoader imageLoader = ImageLoader.getInstance();imageLoader.displayImage(imageUrls[position], holder.image, options, animateFirstListener);return convertView;}}
    2015-03-05下载
    积分:1
  • vortex-part-vi
    OpenGL Rotating triangle
    2012-01-24 16:57:21下载
    积分:1
  • asdownloader
    自己写的android下载工具,多线程,断点续传,分块下载(Android download tool, write your own multi-threaded HTTP chunked download)
    2012-11-15 21:40:14下载
    积分:1
  • ksoap2
    说明:  android调用webservice.........(android use webservice)
    2020-06-20 19:20:02下载
    积分:1
  • ANDROID调用c#的webservice
    webservice是用c#语言写的,android端利用ksoup开源插件调用weservice
    2015-01-05下载
    积分:1
  • 教你将Android手机变成蓝牙无线示波器
    说明:  实现蓝牙实时接收数据并以波形的形式显示在手机屏幕上,绘图采用sufaceView(use surfaceview to make buletooth link)
    2020-12-24 11:29:06下载
    积分:1
  • The-Android-100-problem-sets
    Android&架構&敏捷_高煥堂100問題集_Part_A_ok 进程,线程,JNI,IPC基础(The Android& Architecture & agile _ Gao Huantang 100 problem sets _Part_A_ok)
    2014-07-02 16:22:23下载
    积分:1
  • android_key
    android新增按键值流程,从底层到中间层再到上层app,对linux和android framework有个一定的认识(android key value added processes, from the bottom to the middle layer and then to the upper app, android framework for linux and have a certain understanding of)
    2013-10-09 11:34:19下载
    积分:1
  • 安卓多功能手机助手项目
    本项目是一套基于安卓手机的多功能手机助手的项目源码,实现的功能有手机软件的管理、硬件信息的读取显示、电量情况读取和显示、闹钟设置、相机、通讯录、联系人、短信的读取和显示。还可以一键结束程序,看了一下源码注释很丰富,功能模块代码也都是放在独立的包里,总体来说是套不错的源码,值得借鉴学习涉及模块&技术联系人读取通话记录读取短信读取软件管理一键结束程序闹钟硬件信息读取
    2015-06-15下载
    积分:1
  • android拍照、录制视频并上传至服务器 实例下载(有图有源码)
    拍照、录制视频、上传、服务器配置、预览视频等功能都实现了
    2013-02-07下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载