Hi I am getting some errors when I try to run it on Matlab 7.10.0(R2010a. I believe the problem is related to version issues the error is :Error in 'IEEE80211a/Demodulator': Initialization commands cannot be evaluated.
can anyone help me to fix it.
thanks
Comment only
22 Nov 2011
IEEE 802.11a WLAN model
IEEE 802.11a WLAN physical layer model, with demonstration of adaptive modulation and coding.
to solve the compatibility question with matlab 7 or more just don't use "feval" but call functions by yourself. i know, this is for lazy people: for example in IEEE808211a_udg.m change it like that:
%feval{bd.plotFcnHandle, plot_data, bd.axes, bd.firstcall, other_params};
IEEE80211a_graphics(plot_data,bd.axes, bd.firstcall, other_params);
the same work has to be done in in IEEE80211a_graphics.m also.
good luck!
Comment only
19 May 2011
IEEE 802.11a WLAN model
IEEE 802.11a WLAN physical layer model, with demonstration of adaptive modulation and coding.
thank you, this is great! is there any updated version of this? 'feval' function seems to not be supported in recents matlab versions. has anyone solved the error message in the IEEE80211n_udg file??
Comment only