close Warning: Can't synchronize with repository "(default)" (/common/SVN/wimax does not appear to be a Subversion repository.). Look in the Trac log for more information.

WiMAX/30/02: plot3d.m

File plot3d.m, 160 bytes (added by Nilanjan Paul, 13 years ago)

Octave (MATLAB) script to generate 3D RSSI plot.

Line 
1d = csvread('exp5_rssi_oct.dat');
2d = d(:,[1:3]);
3
4x = d(:,1)';
5y = d(:,2)';
6z = d(:,3)';
7plot3(x,y,z);
8xlabel('latitude');
9ylabel('longitude');
10zlabel('rssi');