登录
首页 » MultiPlatform » gathsrkernel

gathsrkernel

于 2019-03-26 发布 文件大小:112KB
0 91
下载积分: 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 个回复

  • TI毫米波雷达例子程序
    TI毫米波雷达例子程序
    2020-12-08下载
    积分:1
  • android 常用类源码
    android 常用类源码
    2015-02-25下载
    积分:1
  • Bunnypress
    安卓智力型小游戏,对安卓初学者的开发编程很有帮助(Andrews intellectual game development programming helpful, Andrews beginners)
    2020-12-21 16:39:08下载
    积分:1
  • 计算器 Calculator.
    计算器_Calculator. 计算器_Calculator.v
    2014-04-10下载
    积分:1
  • android 第三方登录实例源码下载(QQ登录/新浪微博登录)
    android 第三方登录实例源码下载(QQ登录/新浪微博登录)
    2014-05-23下载
    积分:1
  • MyDiary
    记事本APP,记事可以分享,虽然小但比较完整(Notepad APP, Notepad can share)
    2017-07-01 16:27:43下载
    积分:1
  • Android Intent实例
    Android Intent开发实例 核心代码:package com.amaker.ch06.app;import com.amaker.ch06.app.R;import android.app.Activity;import android.content.Intent;import android.os.Bundle;import android.view.View;import android.view.View.OnClickListener;import android.widget.Button;import android.widget.EditText;/** * @author 郭宏志 * 发送Email */public class MainActivity extends Activity { // 声明视图组件 private EditText toEditText,subjectEditText,contentEditText; private Button sendBtn; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); // 实例化视图组件 toEditText = (EditText)findViewById(R.id.toEditText01); subjectEditText = (EditText)findViewById(R.id.subjectEditText01); contentEditText = (EditText)findViewById(R.id.contentEditText01); sendBtn = (Button)findViewById(R.id.sendButton01); // 为按钮添加单击监听器 sendBtn.setOnClickListener(listener); } // 发送按钮单击监听器 private OnClickListener listener = new OnClickListener() { @Override public void onClick(View v) { // 获得输入信息 String to = toEditText.getText().toString(); String subject = subjectEditText.getText().toString(); String content = contentEditText.getText().toString(); // 创建Intent Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); // 设置内容类型 emailIntent.setType("plain/text"); // 设置额外信息 emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[]{to}); emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, subject); emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, content); startActivity(Intent.createChooser(emailIntent, "发送邮件...")); } };}
    2014-11-24下载
    积分:1
  • android播放IPCamera的rtsp连接
    vlc-android播放网络视频成功
    2014-10-18下载
    积分:1
  • android校园课堂辅助系统程序
    android校园课堂辅助系统程序 android校园课堂辅助系统程序(Android campus class auxiliary system program Android campus class auxiliary system program)
    2021-05-06 22:58:37下载
    积分:1
  • test_asynctask
    这是自己编写的一套android关于异步下载处理的源码。(Asynchronous download android)
    2011-05-10 21:11:21下载
    积分:1
  • 696522资源总数
  • 104042会员总数
  • 46今日下载