2009年5月3日星期日

C++模板

这一周是属于拓展性的一周,因为这一周发现了C++的另一个强大之处,就是它的容器和模板。

这一周的学习过程大概是这样的,自从发现了模板的作用之后,就打算写一个矩阵的模板类。从网上下了一个有问题的程序代码,然后就是边看书边写,刚开始有点自己想当然的写,然后调试通不过,就翻书找,查找问题所在。三四天的连续奋战,终于搞定了模板类的编写,同时用到了valarray 和 complex标准库中的模板。以这些为基础,再加上上周写的alamouti程序代码,很快就完成了combating synch errors in co-relays论文中的算法程序。

5月已经来了,这个月重点托业,同时看论文,看C++方面的书,用C++写仿真程序。
几件要做的事:
1 修改论文,选择杂志发表; 2 参加研三答辩,注意学习。有机会去听下重邮那位师兄的答辩;3 多看书,少上网。

2009年4月26日星期日

今天生日

今天生日,平平常常的过吧。挺佩服同学说的一个人,为了512他生日那天过的有意义,在网上组织,生日那几天去北川支教。
上周所作的工作:
1 小论文内容、格式搞定,发给老板了。
2 托业做了两份听力练习,不是太理想,存在问题:很难长时间集中注意力,缺乏练习,缺乏意志!!!!
3 用C++完成alamouti经典论文的仿真(有兴趣要代码可以留邮箱,我可以发给他),一方面起到练手的作用,另一方面,其他程序都可以以此为原型,进行修改。不能太依赖matlab,师兄给的建议。在编程过程中遇到一些问题,都已解决,练习目的达到。

下周安排:
1 备考托业放在首位,必须坚持,下周搞定两篇听力练习。通过多种途径学英语
2 做combating synchronization errors in cooperative relays论文的仿真,指导本科毕业设计。
3 多数时间用来看书,主要针对LTE和C++。

五一忽略,时间不多了

2009年4月22日星期三

关于头文件中为何要用static

static在头文件中使用的意义:

举个例子:

#ifndef __debug_h
#define __debug_h

#include
#include
#include
#include

static int __verbose = 0;
#define __have___verbose 1
static int __daemon = 0; /* is program daemon? */
#define __have___daemon 1
static int __debug = 0;
#define __have___debug 1

#ifdef __cplusplus
extern "C"{
#endif

static void _debug(const char* fmt, ...)
{
va_list arg;
char buf[8192];

va_start(arg,fmt);
vsnprintf(buf,8192,fmt,arg);
#ifdef DEBUG
if(__daemon){
syslog(LOG_DEBUG|LOG_USER,buf);
}else{
fputs(buf,stdout);
}
#endif
}

static void _verbose(const char* fmt,...)
{
va_list arg;
char buf[8192];

if(!__verbose)
return;
va_start(arg,fmt);
vsnprintf(buf,8192,fmt,arg);

if(__daemon){
syslog(LOG_DEBUG|LOG_USER,buf);
}else{
fputs(buf,stdout);
}
}

#ifdef __cplusplus
}
#endif

#endif

为何上面的都用static 来修饰呢?

如果没有static
当有两个文件a.c 和 b.c
如果a.c b.c都用到了debug.h
那么
debug.h + a.c ===> a.o
debug.h + b.c ===> b.o
gcc a.o b.o -o target
时,a.o和b.o中都同时有__debug,__daemon,__verbose,和_debug,_verbose
的定义,所以链接的时候就回出现multi-definition,为了避免这个
用static声明后,即使有同名的函数或变量出现,但由于static的局部性
不会影响到其他到模块,所以这就很好的避免了上面的multi definition的问题

2009年4月19日星期日

假期归来,收心啦

陪女朋友一周,一个字:累;俩字:幸福。
荒废学业也已经一周了,转眼间4月已经快到头了,按照原来的计划,接下来有两项重要工作:修改论文和备考托业。

关于论文,数据一直有些牵强,按照自己的想法改了再试试。不想在这上面花费太多时间,毕竟它不能带来太大能力方面的提升。

至于托业,应该有足够的重视,毕竟六级分数已经定型了,再加上报名又花了那么多钱。想法是起早,从明天到5月31号,早上8点之前到实验室,人少,方便学英语。每天至少用3到4个小时学英语。同时应该注意联系口语!

至于LTE链路仿真,起初没有意识到任务的艰巨性,别人的硕士论文内容,自己却想顺便做做。现在应该调整思路,要系统学习LTE的知识,但应把研究和仿真重点放在和自己研究方向相关的部分上。

C已经好久没碰了,罪过罪过。这方面也应该转变下思路,一直以来,一直想自己编程序,是都能实现,但程序并不见得就好。接下来应该多看些别人的程序,不能做井底之蛙。

总之,目标很明确,一切为了把基础打扎实,提升能力,为找工作做准备。现在不是为我一个人而努力。

协作通信主要研究方向及经典参考文献

General
1、J. N. Laneman, G. W. Wornell, and D. N. C. Tse, ``An efficient protocol for realizing cooperative diversity in wireless networks,'' in Proc. IEEE ISIT, Washington, DC, June 2001, p. 294.
2、J. N. Laneman, D. N. C. Tse, and G. W. Wornell, ``Cooperative diversity in wireless networks: efficient protocols and outage behavior,'' IEEE Trans. Inf. Theory, vol. 50, pp. 3062-3080, Dec. 2004.
3、J. N. Laneman and G. W. Wornell, ``Distributed space-time-coded protocols for exploiting cooperative diversity in wireless networks,'' IEEE Trans. Inf. Theory, vol. 49, pp. 2415-2425, Oct. 2003.
4、R. U. Nabar, H. Bolcskei, and F. W. Kneubuhler, ``Fading relay channels: performance limits and space-time signal design,'' IEEE J. Select. Areas Commun., vol. 22, pp. 1099-1109, Aug. 2004.
5、A. Sendonaris, E. Erkip and B. Aazhang, ``Increasing uplink capacity via user cooperation diversity,'' in Proc. IEEE ISIT, Aug. 1998, p. 196.
6、A. Sendonaris, E. Erkip, and B. Aazhang, ``User cooperation diversity - Part I: system description,'' IEEE Trans. Commun., vol. 51, pp. 1927-1938, Nov. 2003.
7、A. Sendonaris, E. Erkip, and B. Aazhang, ``User cooperation diversity - Part II: implementation aspects and performance analysis,'' IEEE Trans. Commun., vol. 51, pp. 1939-1948, Nov. 2003.
8、J. Boyer, D. D. Falconer, and H. Yanikomeroglu, ``Multihop diversity in wireless relaying channels,'' IEEE Trans. Commun., vol. 52, pp. 1820-1830, Oct. 2004.
9、P. Mitran, H. Ochiai, and V. Tarokh, ``Space-time diversity enhancements using collaborative communications,'' IEEE Trans. Inf. Theory, vol. 51, pp. 2041-2057, Jun. 2005.
10、M. Katz and S. Shamai, ``Relaying protocols for two colocated users,'' IEEE Trans. Inf. Theory, vol. 52, pp. 2329-2344, June 2006.
11、A. Steiner and S. Shamai, ``Single-user broadcasting protocols over a two-hop Relay fading channel,'' IEEE Trans. Inf. Theory, vol. 52, pp. 4821-4838, Nov. 2006.
12、R. Pabst, et. al., ``Relay-based deployment concepts for wireless and mobile broadband radio,'' IEEE Commun. Mag., pp. 80-89, Sep. 2004.
13、A. Nosratinia, T. E. Hunter, and A. Hedayat, ``Cooperative communication in wireless networks,'' IEEE Commun. Mag., pp. 74-80, Oct. 2004.
14、H. Li and Q. Zhao, ``Distributed modulation for cooperative wireless communications,'' IEEE Signal Processing Mag., vol. 23, pp. 30-36, Sep. 2006.
15、A. Scaglione, D. L. Goeckel, and J. N. Laneman, ``Cooperative communications in mobile ad hoc networks,'' IEEE Signal Processing Mag., vol. 23, pp. 18-29, Sep. 2006.
16、V. Stankovic, A. Host-Madsen, and Z. Xiong, ``Cooperative diversity for wireless ad hoc networks,'' IEEE Signal Processing Mag., vol. 23, pp. 37-49, Sep. 2006.
17、P. Liu, Z. Tao, Z. Lin, E. Erkip, S. Panwar, ``Cooperative wireless communications: a cross-layer approach,'' IEEE Wireless Commun. Mag., vol. 13, pp. 84-92, Aug. 2006.
18、A. Bletsas and A. Lippman, ``Implementing cooperative diversity antenna arrays with commodity hardware,'' IEEE Commun. Mag., vol. 44, pp. 33-40, Dec. 2006.

Capacity
1、A. El Gamal and S. Zahedi, ``Capacity of a class of relay channels with orthogonal components,'' IEEE Trans. Inf. Theory, vol. 51, pp. 1815-1817, May 2005.
2、G. Kramer, M. Gastpar, and P. Gupta, ``Cooperative strategies and capacity theorems for relay networks,'' IEEE Trans. Inf. Theory, vol. 51, pp,.3037-3063, Sep. 2005.
3、A. Host-Madsen, and J. Zhang, ``Capacity bounds and power allocation for wireless relay channels,'' IEEE Trans. Inf. Theory, vol. 51, pp. 2020-2040, June. 2005.
4、B. Wang, J. Zhang, and A. Host-Madsen, ``On the capacity of MIMO relay channels,'' IEEE Trans. Inf. Theory, vol. 51, pp. 29-43, Jan. 2005.
5、Y. Liang and V. V. Veeravalli, ``Gaussian orthogonal relay channels: optimal resource allocation and capacity,'' IEEE Trans. Inf. Theory, vol. 51, pp. 3284-3289, Sep. 2005.
6、Y. Liang and V. V. Veeravalli, ``Cooperative relay broadcast channels,'' IEEE Trans. Inf. Theory, vol. 53, pp. 900-928, Mar. 2007.
7、B. Wang, J. Zhang, and A. Host-Madsen, ``On the capacity of MIMO relay channels,'' IEEE Trans. Inf. Theory, vol. 51, pp. 29-43, Jan. 2005.
8、A. S. Avestimehr and D. N. C. Tse, ``Outage capacity of the fading relay channel in the low-SNR regime,'' IEEE Trans. Inf. Theory, vol. 53, pp. 1401-1415, Apr. 2007.
9、J. Wagner, B. Rankov, and A. Wittneben, ``On the asymptotic capacity of the Rayleigh fading amplify-and-forward MIMO relay channel,'' in Proc. IEEE ISIT, Nice, France, June 24-29, pp. 2711-2715.

Performance Analysis
1、P. A. Anghel and M. Kaveh, ``Exact symbol error probability of a cooperative network in a Rayleigh-fading environment,'' IEEE Trans. Wireless Commun., vol. 3, pp. 1416-1421, Sep. 2004.
2、P. A. Anghel and M. Kaveh, ``On the performance of distributed space-time coding systems with one and two non-regenerative relays,'' IEEE Trans. Wireless Commun., vol. 5, pp. 682-692, Mar. 2006.
3、M. O. Hasna and M.-S. Alouini, ``End-to-end performance of transmission systems with relays over Rayleigh-fading channels,'' IEEE Trans. Wireless Commun., vol. 2, pp. 1126-1131, Nov. 2003.
4、M. O. Hasna and M.-S. Alouini, ``Harmonic mean and end-to-end performance of transmission systems with relays,'' IEEE Trans. Commun., vol. 52, pp. 130-135, Jan. 2004.
5、G. K. Karagiannidis, T. A. Tsiftsis, and R. K. Mallik, ``Bounds for multihop relayed communications in Nakagami-m fading,'' IEEE Trans. Commun., vol. 54, pp. 18-22, Jan. 2006.
6、A. Ribeiro, X. Cai, and G. B. Giannakis, ``Symbol error probabilities for general cooperative links,'' IEEE Trans. Wireless Commun., vol. 4, pp. 1264--1273, May 2005.
7、C. S. Patel, G. L. Stuber, and T. G. Pratt, ``Statistical properties of amplify and forward relay fading channels,'' IEEE Trans. Veh. Technol., vol. 55, pp. 1-9, Jan. 2006.
8、I. Lee and D. Kim, ``BER analysis for decode-and-forward relaying in dissimilar Rayleigh fading channels,'' IEEE Commun. Lett., vol. 11, pp. 52-54, Jan. 2007.
9、N. C. Beaulieu, J. Hu, ``A closed-form expression for the outage probability of decode-and-forward relaying in dissimilar Rayleigh fading channels,'' IEEE Commun. Lett., vol. 10, pp. 813-815, Dec. 2006.
10、A. K. Sadek, W. Su, and K. J. R. Liu, ``Multinode cooperative communications in wireless networks,'' IEEE Trans. Signal Processing, vol. 55, pp. 341-355, Jan. 2007.
11、M. Dohler, Y. Li, B. Vucetic, A. H. Aghvami, M. Arndt, and D. Barthel, ``Performance analysis of distributed space-time block-encoded sensor networks,'' IEEE Trans. Veh. Technol., vol. 55, pp. 1776-1789, Nov. 2006.
12、M. Uysal, O. Canpolat, and M. M. Fareed, ``Asymptotic performance analysis of distributed space-time code,'' IEEE Commun. Lett., vol. 10, pp. 775-777, Nov. 2006.
13、A. Adinoyi and H. Yanikomeroglu, ``Cooperative relaying in multi-antenna fixed relay networks,'' IEEE Trans. Wireless Commun., vol. 6, pp. 533-544, Feb. 2007.
14、S. Ikki and M. H. Ahmed, ``Performance analysis of cooperation diversity wireless networks over Nakagami-m fading channel,'' IEEE Commun. Lett., vol. 11, pp. 334-336, Apr. 2007.
15、A. Bletsas, H. Shin, and M. Z. Win, ``Outage analysis for cooperative communication with amplify-and-forward relays,'' Electronic Lett., vol. 43, pp. 353-355, Mar. 15, 2007.
16、D. S. Michalopoulos and G. K. Daragiannidis, ``Distributed switch and stay combining (DSSC) with a single decode and forward relay,'' IEEE Commun. Lett., vol. 11, pp. 408-410, May 2007.
17、T. Unger and A. Klein, ``On the performance of distributed space-time block codes in cooperative relay networks,'' IEEE Commun. Lett., vol. 11, pp. 411-413, May 2007.

Distributed Space-time Code Design & Diversity-Multiplexing Tradeoff
1、Y. Jing and B. Hassibi, ``Distributed space-time coding in wireless relay networks,'' IEEE Trans. Wireless Commun., vol. 5, pp. 3524-3536, Dec. 2006.
2、Y. Jing and B. Hassibi, ``Cooperative diversity in wireless relay networks with multiple-antenna nodes,'' in Proc. IEEE ISIT, Adelaide, Australia, Sep. 2005, pp. 815-819.
3、Y. Jing and H. Jafarkhani, ``Using orthogonal and quasi-orthogonal designs in wireless relay networks,'' in Proc. IEEE GLOBECOM, Dec. 2006.
4、F. Oggier and B. Hassibi, ``An algebraic family of distributed space-time codes for wireless relay networks,'' in Proc. IEEE ISIT, Seattle, USA, July 9-14, 2006, pp. 538-541.
5、F. Oggier and B. Hassibi, ``A coding scheme for wireless networks with multiple antenna nodes and no channel information,'' in Proc. IEEE ICASSP, Hawaii, USA, Apr. 2007.
6、G. Scutari and S. Barbarossa, ``Distributed space-time coding for regenerative relay networks,'' IEEE Trans. Wireless Commun., vol. 4, pp. 2387-2399, Sep. 2005.
7、K. Azarian, H. E. Gamal, and P. Schniter, ``On the achievable diversity-multiplexing tradeoff in half-duplex cooperative channels,'' IEEE Trans. Inf. Theory, vol. 51, pp. 4152-4172, Dec. 2005.
8、S. Yang and J.-C. Belfiore, ``On slotted amplify-and-forward cooperative diversity schemes,'' in Proc. IEEE ISIT, Seattle, USA, July 9-14, 2006, pp. 2446-2450.
9、S. Yang and J.-C. Belfiore, ``Optimal space-time codes for the MIMO amplify-and-forward cooperative channel,'' IEEE Trans. Inf. Theory, vol. 53, no. 2, pp. 647-663, Feb. 2007.
10、P. Elia and F. Oggier, ``Asymptotically optimal cooperative wireless networks without constellation expansion,'' in Proc. IEEE ISIT, Seattle, USA, July 9-14, 2006, pp. 2729-2733.
11、P. Elia, F. Oggier, and P. Vijay Kumar, ``Asymptotically optimal cooperative wireless networks with reduced signaling complexity,'' IEEE J. Select. Areas Commun., vol. 25, pp. 258-267, Feb. 2007.
12、A. Murugan, K. Azarian and H. El Gamal, ``Cooperative lattice coding and decoding,'' IEEE J. Select. Areas Commun., vol. 25, no. 2, pp. 268--279, Feb. 2007.
13、N. Prasad and M. K. Varanasi, ``High performance static and dynamic cooperative communication protocols for the half duplex fading relay channel,'' in Proc. IEEE GLOBECOM, Dec. 2006.
14、M. Yuksel and E. Erkip. ``Cooperative wireless systems: A diversity multiplexing tradeoff perspective,'' IEEE Trans. Inf. Theory, submitted. http://arxiv.org/abs/cs/0609122
15、P. Elia, K. Vinodh, M. Anand, and P. Vijay Kumar, ``D-MG tradeoff and optimal codes for a class of AF and DF cooperative communication protocols,'' IEEE Trans. Inf. Theory, submitted. http://arxiv.org/abs/cs/0611156
16、Y. Ding, J. Zhang, and M. Wong, ``The amplify-and-forward half-duplex cooperative system: pairwise error probability and precoder design,'' IEEE Trans. Signal Processing, vol. 55, pp. 605-617, Feb. 2007.
17、E. Stauffer, O. Oyman, R. Narasimhan, and A. Paulraj, ``Finite-SNR diversity-multiplexing tradeoffs in fading relay channels,'' IEEE J. Select. Areas Commun., vol. 25, pp. 245-257, Feb. 2007.
18、G. Wang, Y. Zhang, and M. Amin, ``Differential distributed space-time modulation for cooperative networks,'' IEEE Trans. Wireless Commun., vol. 5, pp. 3097-3108, Nov. 2006.
19、P. A. Anghel, G. Leus, and M. Kaveh, ``Distributed space-time cooperative systems with regenerative relays,'' IEEE Trans. Wireless Commun., vol. 5, pp. 3130-3141, Nov. 2006.
20、S. Yiu, R. Schober, and L. Lampe, ``Distributed space-time block coding,'' IEEE Trans. Commun., vol. 54, pp. 1195-1206, July 2006.
21、H. Mheidat, M. Uysal, and N. Al-Dhahir, ``Equalization techniques for distributed space-time block codes with amplify-and-forward relaying,'' IEEE Trans. Signal Processing, vol. 55, pp. 1839-1852, May 2007.
22、Y. Fan, C. Wang, J. Thompson, and H. V. Poor, ``Recovering multiplexing loss through successive relaying using repetition coding,'' IEEE Trans. Wireless Commun., http://arxiv.org/abs/0705.3261
23、C. Akcaba, P. Kuppinger, and H. Boelcskei, ``Distributed transmit diversity in relay networks,'' http://arxiv.org/abs/0705.3677
24、G. Susinder Rajan and B. Sundar Rajan, ``A non-orthogonal distributed space-time coded protocol - part I: signal model and design criteria,'' in Proc. IEEE Inf. Theory Workshop, Chengdu, China, Oct. 2006, pp. 385-389.
25、G. Susinder Rajan and B. Sundar Rajan, ``A non-orthogonal distributed space-time coded protocol - part II: code construction and DM-G tradeoff,'' in Proc. IEEE Inf. Theory Workshop, Chengdu, China, Oct. 2006, pp. 385-389.

OFDM-based Cooperative Communcations
1、J. C. H. Lin and A. Stefanov, ``Coded cooperation for OFDM systems,'' in. Proc. IEEE WirelessCom, Maui, Hi, June 2005.
2、L. Yu and A. Stefanov, ``Cooperative space-time coding for MIMO OFDM systems,'' in Proc. IEEE MILCOM, Oct. 2005, vol. 2, pp. 990-995.
3、H. Mheidat, M. Uysal, and N. Al-Dhahir, ``Distributed space-time block coded OFDM for relay-assisted transmission,'' IEEE Trans. Commun., vol. 10, pp. 4513-4519, June 2006.
4、W. P. Siriwongpairat, A. K. Sadek, and K. J. R. Liu, ``An efficient cooperative protocol for multiuser-OFDM networks,'' in Proc. IEEE GLOBECOM, 2006.
5、L. Dai, B. Gui, L. J. Cimini Jr., ``Selective relaying in OFDM multihop cooperative networks,'' in Proc. IEEE WCNC, Hong Kong, Mar. 2007, pp. 963-968.
6、W. Zhang, Y. Li, X.-G. Xia, P. C. Ching, and K. B. Letaief ``Distributive space-frequency coding in broadband ad hoc networks,'' in Proc. IEEE ICASSP, Honolulu, Hawaii, USA, Apr. 15-20, 2007.

Multihop Relay Networks
1、O. Oyman, ``Opportunism in multiuser relay channels: scheduling, routing and spectrum reuse,'' in Proc. IEEE ISIT, Nice, France, June 24-29, pp. 286-290.
2、Y. Liu, R. Hoshyar, X. Yang, and R. Tafazolli, ``Integrated radio resource allocation for multihop cellular networks with fixed relay stations,'' EEE J. Select. Areas Commun., vol. 24, pp. 2137-2146, Nov. 2006.

Efficient Cooperative Protocol
1、B. Rankov and A. Wittneben, ``Spectral efficient protocols for half-duplex fading relay channels,'' IEEE J. Select. Areas Commun., vol. 25, pp. 379-389, Feb. 2007.
2、Y. Fan, C. Wang, J. Thompson, and H. V. Poor, ``Recovering multiplexing loss through successive relaying using repetition coding,'' http://arxiv.org/abs/0705.3261

Coded Cooperation
1、A. Stefanov and E. Erkip, ``Cooperative coding for wireless networks,'' IEEE Trans. Commun., vol. 52, pp. 1470-1476, Sep. 2004.
2、A. Stefanov and E. Erkip, ``Cooperative space-time coding for wireless networks,'' IEEE Trans. Commun., vol. 52, pp. 1804-1809, Nov. 2005.
3、T. E. Hunter and A. Nosratinia, ``Cooperation diversity through coding,'' in Proc. IEEE ISIT, Lausanne, Switzerland, June, 2002, p. 220.
4、T. E. Hunter and A. Nosratinia, ``Diversity through coded cooperation,'' IEEE Trans. Wireless Commun., vol. 5, pp. 283-289, Feb. 2006.
5、T. Hunter, S. Sanayei, and A. Nosratinia, ``Outage analysis of coded cooperation,'' IEEE Trans. Inf. Theory, vol. 52, pp. 375-391, Feb. 2006.
6、S. J. Kim, P. Mitran, and V. Tarokh, ``Performance bounds for bi-directional coded cooperation protocols,'' http://arxiv.org/abs/cs/0703017

Relay Selection (Opportunistic Relaying)
1、A. Bletsas, D. P. Reed, and A. Lippman, ``A simple cooperative diversity method based on network path selection,'' IEEE J. Select. Areas Commun., vol. 24, pp. 659--672, Mar. 2006.
2、A. Bletsas, H. Shin, and M. Z. Win, ``Outage optimality of opportunistic amplify-and-forward relaying,'' IEEE Commun. Lett., vol. 11, pp. 261-263, Mar. 2007.
3、Z. Lin, E. Erkip, and A. Stefanov, ``Cooperative regions and partner choice in coded cooperative systems,'' IEEE Trans. Commun., vol. 54, pp. 1323-1334, July 2006.
4、Y. Zhao, R. Adve, and T. J. Lim, ``Improving amplify-and-forward relay networks: optimal power allocation versus selection,'' IEEE Trans. Wireless Commun., vol. 6, pp. 3114-3122, Aug. 2007.
5、Y. Zhao, R. Adve, and T. J. Lim, ``Symbol error rate of selection amplify-and-forward relay systems,'' IEEE Commun. Lett., Nov. 2006.
6、R. Madan, N. B. Mehta, A. F. Molisch and J. Zhang, ``Energy-efficient cooperative relaying over fading channels with simple relay selection,'' in Proc. IEEE GLOBECOM, Dec. 2006.
7、D. S. Michalopoulos, G. K. Karagiannidis, T. A. Tsiftsis, and R. K. Mallik, ``An optimized user selection method for cooperative diversity systems,'' in Proc. IEEE GLOBECOM, Dec. 2006.
8、X. Liu and W. Su, ''Optimum selection relaying protocols in cooperative wireless networks,'' in Proc. IEEE GLOBECOM, Dec. 2006.
9、A. S. Ibrahim, A. Sadek, W. Su and K. J. R. Liu, ``Relay selection in multi-node cooperative communications: when to cooperate and whom to cooperate with?'' in Proc. IEEE GLOBECOM, Dec. 2006.
10、A. Nosratinia and T. E. Hunter, ``Grouping and partner selection in cooperative wireless networks,'' IEEE J. Sel. Areas Commun., vol. 25, pp. 369-378, Feb. 2007.
11、T. A. Tsiftsis, G. K. Karagiannidis, P. Takis Mathiopoulos, and S. A. Kotsopoulos, ``Nonregenerative dual-hop cooperative links with selection diversity,'' EURASIP J. Wireless Commun. and Networking, 2006.
12、H. Yang and A. P. Petropulu, ``Alliances with optimal relay selection,'' in Proc. IEEE ICASSP, Hawaii, Apr. 2007, vol. 3, pp. 1265-1268.
13、A. Tajer and A. Nosratinia, ``Opportunistic cooperation via relay selection with minimal information exchange,'' in Proc. IEEE ISIT, Nice, France, June 24-29, 2007, pp. 1926-1930.
14、C. Hucher, G. R.-B. Othman, J.-C. Belfiore, ``Adaptive amplify-and-forward cooperative channel,'' in Proc. IEEE ISIT, Nice, France, June 24-29, 2007, pp. 2706-2710.
15、C. K. Lo, R. W .Heath, and S. Vishwanath, ``Hybrid-ARQ in multihop networks with opportunistic relay selection,'' http://arxiv.org/abs/0704.0802
16、C. K. Lo, R. W .Heath, and S. Vishwanath, ``Opportunistic relay selection with limited feedback,'' http://arxiv.org/abs/0704.0805
17、K. Rajawat and A. Banerjee, ``Selection relaying at low signal to noise ratios,'' http://arxiv.org/abs/0707.0234

Resource Allocation
1、I. Maric and R. D. Yates, ``Bandwidth and power allocation for cooperative strategies in Gaussian relay networks,'' in Proc. IEEE Asilomar Conf. Signals, Systems and Computers, Nov. 2004, vol. 2., pp. 1907-1911.
2、T. Ng and W. Yu, ``Joint optimization of relay strategies and resource allocation in cooperative cellular networks,'' IEEE J. Select. Areas Commun., vol. 25, pp. 328-229, Feb. 2007.
3、X. M. Deng and A. M. Haimovich, ``Power allocation for cooperative relaying in wireless networks,'' IEEE Commun. Lett., vol. 9, pp. 994-996, Nov. 2005.
4、S. Serbetli and A. Yener, ``Relay assisted F/TDMA ad hoc networks: node classification, power allocation and relaying strategies,'' http://arxiv.org/abs/cs/0701002
5、H. Li and H. Liu, ``An analysis on uplink OFDMA optimality,'' in Proc. IEEE VTC, 2006, vol. 3, pp. 1339-1343.
6、G. Li and H. Liu, ``Resource allocation for OFDMA relay networks with fairness constraints,'' IEEE J. Select. Areas Commun., vol. 24, pp. 2061-2069, Nov. 2006.
7、I. Hammerstrom and A. Wittneben, ``On the optimal power allocation for nonregenerative OFDM relay links,'' in Proc. IEEE ICC, Turkey, June 2006, pp. 4463-4468.
8、Z. Yang and A. Host-Madsen, ``Routing and power allocation in asynchronous Gaussian multiple-relay channels,'' EURASIP J. Wireless Commun. and Networking, 2006.
9、T. C.-Y. Ng, and W. Yu, ``Joint optimization of relay strategies and resource allocations in cooperative cellular networks,'' IEEE J. Sel. Areas Commun., vol. 25, pp. 328-339, Feb. 2007.
10、S. Savazzi and U. Spagnolini, ``Energy aware power allocation, strategies for multihop-cooperative transmission schemes,'' IEEE J. Sel. Areas Commun., vol. 25, pp. 318-327, Feb. 2007.
11、R. Annavajjlal, P. C. Cosman, and L. B. Milstein, ``Statistical channel knowledge-based optimum power allocation for relaying protocols in the high SNR regime,'' IEEE J. Sel. Areas Commun., vol. 25, pp. 292-305, Feb. 2007.
12、T. Himsoon, W. P. Siriwongpairat, Z. Han, and K. J. R. Liu, ``Lifetime maximization via cooperative nodes and relay deployment in wireless networks,'' IEEE J. Sel. Areas Commun., vol. 25, pp. 306-317, Feb. 2007.
13、L. Dai, W. Chen, K. B. Letaief and Z. Cao, ``A fair multiuser cooperation protocol for increasing the throughput in energy-constrained ad-hoc networks,'' in Proc. IEEE ICC 2006, Istanbul, Turkey, pp. 3633-3638.
14、W. Chen, L. Dai, K. B. Letaief, and Z. Cao, ``Fair and efficient resource allocation for cooperative diversity in ad-hoc wireless networks,'' in Proc. IEEE WCNC, Mar. 2007, Hong Kong.
15、Y. Li, B. Vucetic, Z. Zhou, and M. Dohler, ``Distributed adaptive power allocation for wireless relay networks,'' IEEE Trans. Wireless Commun., vol. 6, pp. 948-958, Mar. 2007.
16、J. Luo, R. S. Blum. L. J. Cimini, and L. J. Greenstein, ``Decode-and-forward cooperative diversity with power allocation in wireless networks,'' IEEE Trans. Wireless Commun., vol. 6, pp. 793-799, Mar. 2007.
17、D. Gunduz and E. Erkip, ``Opportunistic cooperation by dynamic resource allocation,'' IEEE Trans. Wireless Commun., vol. 6, pp. 1446-1454, Apr. 2007.
18、Y.-W. Hong, W.-J. Huang, F.-H. Chiu, and C.-C. J. Kuo, ``Cooperative communications in resource-constrained wireless networks,'' IEEE Signal Processing Magazine, vol. 24, pp. 47-57, May 2007.
19、J. Tang and X. Zhang, ``Cross-layer resource allocation over wireless relay networks for quality of service provisioning,'' IEEE J. Sel. Areas Commun., vol. 25, pp. 645-656, May 2007.
20、L. Sankar, Y. Liang, H. V. Poor, and N. Mandayam, ``Opportunistic communications in an orthogonal multiaccess relay channel,'' in Proc. IEEE ISIT, Nice, France, June 23-29, 2007, pp. 1261-1265.
21、N. Khajehnouri and A. H. Sayed, ``Distributed MMSE relay strategies for wireless sensor networks,'' IEEE Trans. Signal Processing, vol. 55, pp. 3336-3348, July 2007.
22、A. P. T. Lau and S. Cui, ``Joint power minimization in wireless relay channels,'' IEEE Trans. Wireless Commun., vol. 6, pp. 2820-2824, Aug. 2007.
23、I. Hammerstrom and A. Wittnenben, ``Power allocation schemes for amplify-and-forward MIMO-OFDM relay links,'' IEEE Trans. Wireless Commun., vol. 6, pp. 2798-2802, Aug. 2007.

MIMO Relay
1、H. Bolcskei, R. U. Nabar, O. Oyman, and A. J. Paulraj, ``Capacity scaling laws in MIMO relay networks,'' IEEE Trans. Wireless Commun., vol. 5, pp. 1433-1444, June 2006.
2、T. Abe, H. Shi, and T. Asai, and H. Yoshino, ``Relay techniques for MIMO wireless networks with multple source and multiple destination pairs,'' EURASIP J. Wireless Commun. and Networking, 2006.
3、A. Adinoyi and H. Yanikomeroglu, ``Cooperative relaying in multi-antenna fixed relay networks,'' IEEE Trans. Wireless Commun., vol. 6, pp. 533-544, Feb. 2007.
4、T. Kang and V. Rodoplu, ``Algorithms for the MIMO single relay channels,'' IEEE Trans. Wireless Commun., vol. 6, pp. 1596-1600, May 2007.
5、Y. Fan and J. Thompson, ``MIMO configurations for relay channels: theory and practice,'' IEEE Trans. Wireless Commun., vol. 6, pp. 1774-1786, May 2007.
6、X. Tang and Y. Hua, ``Optimal design of non-regenerative MIMO wireless relays,'' IEEE Trans. Wireless Commun., vol. 6, pp. 1398-1407, Apr. 2007.
7、O. M. Medina, J. Vidal, and A. Agustin, ``Linear transceiver design in nonregenerative relays with channel state information,'' IEEE Trans. Signal Processing, vol. 55, pp. 2593-2604, June 2007.
8、C. K. Lo, S. Vishwanath, and R. W .Heath, ``Rate bounds for MIMO relay channels using message splitting,'' http://arxiv.org/abs/0705.0564
9、S. Yang and J.-C. Belfiore, ``Diversity of MIMO multihop relay channels - Part I: amplify-and-forward,'' http://arxiv.org/abs/0704.3969
10、S. O. Gharan, A. Bayesteh, and A. K. Khandani, ``Asymptotic analysis of amplify and forward relaying in a parallel MIMO relay network,'' http://arxiv.org/abs/cs/0703151

Asynchronous Cooperative Communications
1、Y. Mei, Y. Hua, A. Swami, and B. Dneshrad, ``Combating synchronization errors in cooperative relays,'' in Proc. IEEE ICASSP, Philadelphia, PA, USA, Mar. 2005, vol. 3, pp. 369-372.
2、S. Wei, D. L. Goeckel, and M. C. Valenti, ``Asynchronous cooperative diversity,'' IEEE Trans. Wireless Commun., vol. 5, pp. 1547-1557, June 2006.
3、D. Veronesi and D. L. Goeckel, ``Multiple frequency offset compensation in cooperative wireless systems,'' in Proc. IEEE Globecom, San Francisco, CA, USA, Nov. 27-Dec. 1, 2006.
4、Y. Shang and X.-G. Xia, ``Shift-full-rank matrices and applications in space-time trellis codes for relay networks with asynchronous cooperative diversity,'' IEEE Inf. Theory, vol. 52, pp. 3153-3167, July 2006.
5、Y. Li and X.-G. Xia, ``A family of distributed space-time trellis codes with asynchronous cooperative diversity,'' IEEE Trans. Commun., vol. 55, pp. 790-800, Apr. 2007.
6、X. Li, ``Space-time coded multi-transmission among distributed transmission without perfect synchronization,'' IEEE Signal Processing Lett., vol. 11, pp. 948-951, Dec. 2004.
7、X. Li, M. Chen, and W. Liu ``Application of STBC-encoded cooperative transmissions in wireless sensor networks,'' IEEE Signal Processing Lett., vol. 12, pp. 134-137, Feb. 2005.
8、K. Tourki and L. Deneire, ``Channel and delay estimation algorithm for asynchronous cooperative diversity,'' Wireless Personal Comunications, vol. 37, pp. 361-369, May 2006.
9、A. O. Yilmaz, ``Cooperative diversity in carrier frequency offset,'' IEEE Commun. Lett. vol. 11, pp. 307-309, Apr. 2007.
10、P. A. Parker, P. Mitran, D. W. Bliss, and V. Tarokh, ``On bounds and algorithms for frequency synchronization for collaborative communication systems,'' http://arxiv.org/abs/0704.3054
11、S. Wei, ``Diversity-multiplexing tradeoff of asynchronous cooperative diversity in wireless networks,'' http://arxiv.org/abs/0708.1179

2009年4月8日星期三

关于讨论会

今天下午讨论会,把我最近的工作以及论文的主要内容给大家讲了讲,加上提问问题总共一个半小时。

并没有完全把想将的讲清楚,但也正常,要能讲得很清楚就不正常了。这也是种能力呀,需要锻炼。这是第二次讲东西,去年上了一学期课对自己还是挺有帮助的。作讲座,指导思想很清楚,首要目的是让别人听懂。今天有些内容自己都感觉没讲清楚,不过最主要的内容还是讲清楚了的。

以后要珍惜这种机会,多多锻炼。

2009年4月7日星期二

第六周——小论文

实验室网络不正常,再加上清明放假,上周感觉有点乱。

主要做的工作:
准备了一些小论文材料,翻译了一篇英文文章,打算以那篇论文为框架。写作能力叫一个差呀。

在这个过程中发现了论文中一个公式是错的,程序也是按照错的公式写的,所有程序又要重跑一遍。以后一定要注意,要么推导一下公式要么用某种途径验证公式的正确性。没想到IEEE上面的文章也会有错。

做讨论会需要的PPT,这个过程收获还是挺大的,有些东西自以为弄清楚了,但想怎样去给别人讲的时候发现还是没弄太明白,然后就想的多了,学的也就多了。

在看LTE的过程中意识到了空间分集和空间复用的区别,分集追求可靠性,复用追求高速,具体区别不多说了。

上行MIMO:LTE中提出两个终端天线配对形成多天线,然后按照类似于分层空时码的方式发送信号。这周把这块好好看看。

一篇3GPP上下的关于协作或者说中继的文章,研究一下。

周三下午演讲,周四去虎溪参加党组织生活,周五准备迎接老婆。
下了一个Turbo码的C++程序,写的不错,注释清晰,好好研究一下。看别人的程序太少了,多学学。