|
"Bikash Singh" <bikashsingh18@yahoo.com> wrote in message <gl1qgu$qvq$1@fred.mathworks.com>...
> I want to evaluate the Performance of WiMAXIEEE 802.16 OFDM Physical Layer
> For this purpose i run the related code in matlab. But in this code there is an error. And mention that the error is in line 8 is given below. And error is
> "??? Attempt to reference field of non-structure array."
>
> Error in ==> thesis at 8
> if (IEEE80216params.Link.DIUC == 0 ) && (IEEE80216params.Link.direction == 'Dlink')
It means that either IEEE80216params or IEEE80216params.Link is not a structure.
The way to check that is
t1 = isa(IEEE80216params,'struct')
t2 = isa(IEEE80216params.Link,'struct')
If IEEE80216params is a structure, but IEEE80216params.Link is not, then t1 = 1 and t2 = 0.
|