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

📄 physicalchannelframe.h

📁 用matlab程序实现WCDMA系统的仿真
💻 H
字号:
// PhysicalChannelFrame.h: interface for the PhysicalChannelFrame class.
//
// Copyright 2002 The Mobile and Portable Radio Research Group
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_PHYSICALCHANNELFRAME_H__DA85BD00_1A19_11D5_817F_87148E4E1FB7__INCLUDED_)
#define AFX_PHYSICALCHANNELFRAME_H__DA85BD00_1A19_11D5_817F_87148E4E1FB7__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "TransmitterClass.h"

class PhysicalChannelFrame  
{
public:
	ComplexNumber *DesiredDPCH;
	unsigned NumOtherDPCHs;
	ComplexNumber ** OtherDPCHs;
	unsigned NumDPCCHforCPCH;
	ComplexNumber **DPCCHforCPCH;
	ComplexNumber *P_CPICH;
	unsigned NumS_CPICH;
	ComplexNumber **S_CPICH;
	ComplexNumber *P_CCPCH;
	ComplexNumber *S_CCPCH;
	ComplexNumber *PDSCH;
	ComplexNumber *P_SCH;
	ComplexNumber *S_SCH;
	PhysicalChannelFrame(TransmitterClass Tx);
	virtual ~PhysicalChannelFrame();
	

};

#endif // !defined(AFX_PHYSICALCHANNELFRAME_H__DA85BD00_1A19_11D5_817F_87148E4E1FB7__INCLUDED_)

⌨️ 快捷键说明

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