Skip to main content

No project description provided

Project description

Bayesian PIC-DSC detector

PyPi MathWorks

This detection method is proposed in A Bayesian Receiver With Improved Complexity-Reliability Trade-Off in Massive MIMO Systems by Alva Kosasih. It has three modules: BSO does the parallel interference cancellation, BSE does the Bayesian symbol estimation, and DSC does the update.

Kosasih, A., Miloslavskaya, V., Hardjawana, W., She, C., Wen, C. K., & Vucetic, B. (2021). A Bayesian receiver with improved complexity-reliability trade-off in massive MIMO systems. IEEE Transactions on Communications, 69(9), 6251-6266.

  • In another local repositiory, add this module
    git submodule add git@github.com:whatshow/Phy_Detect_BPIC.git Modules/Detect_BPIC
    
  • import this module
    • Matlab
      addpath("Modules/Detect_BPIC");
      
    • Python
      if '.' not in __name__ :
          from Modules.Detect_BPIC.BPIC import BPIC
      else:
          from .Modules.Detect_BPIC.BPIC import BPIC
      

How to use

All Bayesian PIC-DSC detector codes are uniform in matlab and python as a class of BPIC. This class is the whole process of the detection. This section will illustrate the methods of this class following the detection process.

  • BPIC
    @constellation: the constellation, a vector.
    @bso_mean_init: 1st iteration method in BSO to calculate the mean. Default: BPIC.BSO_INIT_MMSE, others: BPIC.BSO_INIT_MRC, BPIC.BSO_INIT_ZF (BPIC.BSO_INIT_NO should not be used but you can try)
    @bso_mean_cal: other iteration method in BSO to calculate the mean. Default: BPIC.BSO_MEAN_CAL_MRC (BPIC.BSO_MEAN_CAL_ZF should not be used but you can try)
    @bso_var: use approximate or accurate variance in BSO. Default: BPIC.BSO_VAR_APPRO, others: BPIC.BSO_VAR_ACCUR
    @bso_var_cal: the method in BSO to calculate the variance. Default: BPIC.BSO_VAR_CAL_MRC, others: BPIC.BSO_VAR_CAL_MRC (BSO_VAR_CAL_ZF should not be used but you can try)
    @dsc_ise: how to calculate the instantaneous square error. Default: BPIC.DSC_ISE_MRC, others: BPIC.DSC_ISE_NO, BPIC.DSC_ISE_ZF, BPIC.DSC_ISE_MMSE
    @dsc_mean_prev_sour: the source of previous mean in DSC. Default: BPIC.DSC_MEAN_PREV_SOUR_BSE, others: BPIC.DSC_MEAN_PREV_SOUR_DSC
    @dsc_var_prev_sour: the source of previous variance in DSC. Default: BPIC.DSC_VAR_PREV_SOUR_BSE, others: BPIC.DSC_VAR_PREV_SOUR_DSC
    @min_var: the minimal variance.
    @iter_num: the maximal iteration.
    @iter_diff_min: the minimal difference in DSC to early stop.
    @detect_sour: the source of detection result. Default: BPIC.DETECT_SOUR_DSC, others: BPIC.DETECT_SOUR_BSE.
    % matlab
    bpic = BPIC(sympool, "bso_mean_init", BPIC.BSO_MEAN_INIT_MMSE, "bso_var", BPIC.BSO_VAR_APPRO, "bso_var_cal", BPIC.BSO_VAR_CAL_MMSE, "dsc_ise", BPIC.DSC_ISE_MMSE, "detect_sour", BPIC.DETECT_SOUR_BSE);
    
    # python
    
  • detect
    @y: the received signal, a vector
    @H: the channel matrix, a matrix
    @No: the noise power, a scalar
    • Return Value: the estimated symbols from Tx.

Samples

Before running any sample code, please make sure you are at the root path of this repository. Also, Matlab codes require running init in the command window first to load directories.

  • Test
    • Test/test_mimo: test the performance of Bayesian PIC-DSC detector in MIMO case.
    • Test/test_case_01: compare the output from this module and Alva's original code## How to use All Bayesian PIC-DSC detector codes are uniform in matlab and python as a class of BPIC. This class is the whole process of the detection. This section will illustrate the methods of this class following the detection process.
  • BPIC
    @constellation: the constellation, a vector.
    @bso_mean_init: 1st iteration method in BSO to calculate the mean. Default: BPIC.BSO_INIT_MMSE, others: BPIC.BSO_INIT_MRC, BPIC.BSO_INIT_ZF (BPIC.BSO_INIT_NO should not be used but you can try)
    @bso_mean_cal: other iteration method in BSO to calculate the mean. Default: BPIC.BSO_MEAN_CAL_MRC (BPIC.BSO_MEAN_CAL_ZF should not be used but you can try)
    @bso_var: use approximate or accurate variance in BSO. Default: BPIC.BSO_VAR_APPRO, others: BPIC.BSO_VAR_ACCUR
    @bso_var_cal: the method in BSO to calculate the variance. Default: BPIC.BSO_VAR_CAL_MRC, others: BPIC.BSO_VAR_CAL_MRC (BSO_VAR_CAL_ZF should not be used but you can try)
    @dsc_ise: how to calculate the instantaneous square error. Default: BPIC.DSC_ISE_MRC, others: BPIC.DSC_ISE_NO, BPIC.DSC_ISE_ZF, BPIC.DSC_ISE_MMSE
    @dsc_mean_prev_sour: the source of previous mean in DSC. Default: BPIC.DSC_MEAN_PREV_SOUR_BSE, others: BPIC.DSC_MEAN_PREV_SOUR_DSC
    @dsc_var_prev_sour: the source of previous variance in DSC. Default: BPIC.DSC_VAR_PREV_SOUR_BSE, others: BPIC.DSC_VAR_PREV_SOUR_DSC
    @min_var: the minimal variance.
    @iter_num: the maximal iteration.
    @iter_diff_min: the minimal difference in DSC to early stop.
    @detect_sour: the source of detection result. Default: BPIC.DETECT_SOUR_DSC, others: BPIC.DETECT_SOUR_BSE.
    % matlab
    bpic = BPIC(sympool, "bso_mean_init", BPIC.BSO_MEAN_INIT_MMSE, "bso_var", BPIC.BSO_VAR_APPRO, "bso_var_cal", BPIC.BSO_VAR_CAL_MMSE, "dsc_ise", BPIC.DSC_ISE_MMSE, "detect_sour", BPIC.DETECT_SOUR_BSE);
    
    # python
    
  • detect
    @y: the received signal, a vector
    @H: the channel matrix, a matrix
    @No: the noise power, a scalar
    • Return Value: the estimated symbols from Tx.

Samples

Before running any sample code, please make sure you are at the root path of this repository. Also, Matlab codes require running init in the command window first to load directories.

  • Test
    • Test/test_mimo: test the performance of Bayesian PIC-DSC detector in MIMO case.
    • Test/test_case_01: compare the output from this module and Alva's original code.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

whatshow_phy_detect_bpic-1.0.3.tar.gz (8.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

whatshow_phy_detect_bpic-1.0.3-py3-none-any.whl (7.8 kB view details)

Uploaded Python 3

File details

Details for the file whatshow_phy_detect_bpic-1.0.3.tar.gz.

File metadata

File hashes

Hashes for whatshow_phy_detect_bpic-1.0.3.tar.gz
Algorithm Hash digest
SHA256 ba83617b541cd5b2a5ed4198df03348756ec530960e9a45deb54ba9ec692e334
MD5 2a07ea7dd7350c42718fe71c36e319ec
BLAKE2b-256 ac4ed6b2166ac1a5d5af2b47e621fa36a46e38c9cb7ff56ec24bae13487c4c80

See more details on using hashes here.

File details

Details for the file whatshow_phy_detect_bpic-1.0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for whatshow_phy_detect_bpic-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 6365c33a3eacac9b2fbd894c7bf04820e017e9906fa168876c1269023500b417
MD5 b37931d62b3717bbf3864c23e5b63ebe
BLAKE2b-256 34a7883e9e1224b00fb6e85510992e7adcdccfdab75a6a13706a14ed5f57ed30

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page