This file is indexed.

/usr/include/itpp/comm/stc.h is in libitpp-dev 4.2-4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
/*!
 * \file
 * \brief Definitions for Space Time Codes (STC) class
 * \author Bogdan Cristea
 *
 * -------------------------------------------------------------------------
 *
 * Copyright (C) 1995-2010  (see AUTHORS file for a list of contributors)
 *
 * This file is part of IT++ - a C++ library of mathematical, signal
 * processing, speech processing, and communications classes and functions.
 *
 * IT++ is free software: you can redistribute it and/or modify it under the
 * terms of the GNU General Public License as published by the Free Software
 * Foundation, either version 3 of the License, or (at your option) any
 * later version.
 *
 * IT++ is distributed in the hope that it will be useful, but WITHOUT ANY
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
 * details.
 *
 * You should have received a copy of the GNU General Public License along
 * with IT++.  If not, see <http://www.gnu.org/licenses/>.
 *
 * -------------------------------------------------------------------------
 */

#ifndef STC_H
#define STC_H

#include <itpp/itbase.h> //IT++ base module

namespace itpp
{

/*!
  \ingroup misccommfunc
  \brief Space Time block Codes (STC) class

  Implements Space Time block Codes using Hassibi's model

  Reference: B. Hassibi and B. M. Hochwald, ''High-rate codes that are linear in space and time,``
  IEEE Transactions on Information Theory, vol. 48, pp. 1804-1824, July 2002
 */
class STC
{
public:
    //! Setup ST block codes (Hassibi's method is used)
    void setup(const int &in_em_antennas, const int &in_channel_uses, const std::string &in_code_name, const int &in_const_size)
    {
        em_antennas = in_em_antennas;
        channel_uses = in_channel_uses;
        code_name = in_code_name;
        const_size = in_const_size;
        Hassibi_block_code();
    };
    //! Encodes input symbols according to specified ST code
    itpp::cmat encode(const itpp::cvec &symb)
    {
        return Hassibi_encode(symb);
    };
    //! Gets the number of symbols per ST code block
    const int get_nb_symbols_per_block(void) const
    {
        return symb_block;
    };
    //! Gets the first generator matrix of the ST code following Hassibi's approach
    const itpp::cmat get_1st_gen_matrix(void) const
    {
        return A;
    };
    //! Gets the second generator matrix of the ST code following Hassibi's approach
    const itpp::cmat get_2nd_gen_matrix(void) const
    {
        return B;
    };
    //! Gets the number of emission antennas
    const int get_nb_em_antennas(void) const
    {
        return em_antennas;
    };
    //! Gets the number of channel uses (ST block code duration [symbols])
    const int get_channel_uses(void) const
    {
        return channel_uses;
    };
private:
    void Hassibi_block_code(void);
    itpp::cmat Hassibi_encode(const itpp::cvec &symb);
    itpp::cmat diag_pow(const itpp::cmat &in_mat, const double &in_exp);
    itpp::mat mat_pow(const itpp::mat &in_mat, const int &in_exp);
    int symb_block;
    int const_size;
    itpp::cmat A;
    itpp::cmat B;
    int em_antennas;
    int channel_uses;
    std::string code_name;
};

}
#endif /* STC_H_ */