2011年3月30日星期三

2011年3月29日星期二

60GHZ mmWave MAC design

Professor Upamanyu Madhow, UCSB
http://sputnik.ece.ucsb.edu/wcsl/publications.html
http://www.ece.ucsb.edu/wcsl/mmwcsresearch/doku.php?id=mmwresearchpaperlist

Lin Cai, University of Waterloo
http://bbcr.uwaterloo.ca/~lcai/

2011年3月23日星期三

Install UCLA Zigbee PHY code in USRP2

If there are some errors when installing the UCLA Zigbee on USRP2,
like "stdout is not defined", "printf is not defined"...
Then, include the following line in the error C file:
#include

And then, do the re-compile and re-install.

https://www.cgran.org/wiki/UCLAZigBee
https://www.cgran.org/browser/projects/ucla_zigbee_phy/branches

Wireshark linux command

http://linux.die.net/man/1/wireshark

How to use wireshark to capture TCP data?
http://academic.csuohio.edu/zhao_w/teaching/wireshark-labs/Wireshark_TCP.pdf

2011年3月22日星期二

Spectrum analyzer parameters

Mainly talks about the relationship spectrum span, Resolution BW, sweep time, FFT size,
noise floor calculation, how to do RMS averaging to smooth the data and so on

http://zone.ni.com/devzone/cda/tut/p/id/3622
http://dsnra.jpl.nasa.gov/technical/spectrum_analyzer/sweeptime.html
http://zone.ni.com/reference/en-XX/help/371361E-01/lvanlsconcepts/average_improve_measure_freq/
http://digital.ni.com/public.nsf/allkb/862567530005F09C862567210074EA10

Here is "Labview analysis concept"
http://digital.ni.com/public.nsf/allkb/862567530005F09C862567210074EA10

2011年3月8日星期二

outstanding groups in my area

http://synrg.ee.duke.edu/
by Dr. Romit Roy Choudhury


http://hinrg.cs.jhu.edu/
by Dr. Andreas Terzis

http://www.cse.msu.edu/~glxing/#publications
by Dr. Guoliang Xing

script in Matlab

for i=1:100
name = [num2str(i) '.xlsx'];
[num,txt,raw] = xlsread(name);
final(:,i) = num(:,2);
end

x_axis = num(:,1); % freq bin
% barh(x_axis, final)

h = surf(final);
[m,n] = size(final);
set(h, 'EdgeColor', 'none');

2011年3月1日星期二

ECE 531: Detection and Estimation by UIC ECE

http://www.ece.uic.edu/~devroye/courses/ECE531/

The notes and slides are included.