⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bound_undetect_422.c

📁 error correction code
💻 C
字号:
// ------------------------------------------------------------------------
// File: undetect_422.c
//
// Undetected error probability of a binary linear (4,2,2) code.
// Equation (1.27) in the book.
// ------------------------------------------------------------------------
// This program is complementary material for the book:
//
// R.H. Morelos-Zaragoza, The Art of Error Correcting Coding, Wiley, 2002.
//
// ISBN 0471 49581 6
//
// This and other programs are available at http://the-art-of-ecc.com
//
// You may use this program for academic and personal purposes only. 
// If this program is used to perform simulations whose results are 
// published in a journal or book, please refer to the book above.
//
// The use of this program in a commercial product requires explicit
// written permission from the author. The author is not responsible or 
// liable for damage or loss that may be caused by the use of this program. 
//
// Copyright (c) 2002. Robert H. Morelos-Zaragoza. All rights reserved.
// ------------------------------------------------------------------------

#include <stdio.h>
#include <math.h>

#define NMAX 129           // Maximum code length + 1

main(argc,argv)
int argc;
char **argv;
{
  int n;
  int dmin;
  double a[NMAX+1];        // Weight distribution
  double p, Pu;
  int i;
  double nd, id;

  double fact(double a);
  double comb(double a, double b);

  char name1[80], name2[80];
  FILE *fp1,*fp2;

  if (argc != 4)
  {
    printf("Usage: %s n dmin file_Pu\n",
    argv[0]);
    exit(1);
  }
  sscanf(argv[1], "%d", &n);
  sscanf(argv[2], "%d", &dmin);
  sscanf(argv[3], "%s", name1);

  fp1 = fopen(name1,"w");

  p = 1.0e-05;
  while (p<0.5)
    {
    Pu = 0.0;
    for (i=dmin; i<=n; i++)
      {
      nd = (double) n;
      id = (double) i;
      Pu += comb(nd,id) * pow(p,id)*pow((1.0-p),(nd-id));
      }
    fprintf(fp1,"%e %e\n", p, Pu);
    p += 1.0e-05;
    }

}

double fact(double a)
{
    double i,tot;

    tot = 1.0;
    for (i=a;i>0.001;i=i-1.0)
    {
        tot = tot * i;
    }
    return(tot);
}

double comb(double a,double b)
{
    double z,tot;

        if (a<b)
           return(1.0);
    if (b > (a-b))
    {
       tot = 1.0/fact(a-b);
       for (z=a;z>b;z=z-1.0)
       {
          tot = tot * z;
       }
    }
    else
    {
       tot = 1.0/fact(b);
       for (z=a;z>a-b;z=z-1.0)
       {
          tot = tot * z;
       }
    }
    return(tot);
}


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -