<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/242666</link>
    <title>MATLAB Central Newsreader - Problem when i run a code in matlab</title>
    <description>Feed for thread: Problem when i run a code in matlab</description>
    <language>en-us</language>
    <copyright>&amp;copy;1994-2012 by MathWorks, Inc.</copyright>
    <webmaster>webmaster@mathworks.com</webmaster>
    <generator>MATLAB Central Newsreader</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <ttl>60</ttl>
    <image>
      <title>MathWorks</title>
      <url>http://www.mathworks.com/images/membrane_icon.gif</url>
    </image>
    <item>
      <pubDate>Sun, 15 Feb 2009 13:36:01 -0500</pubDate>
      <title>Re: Problem when i run a code in matlab</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/242666#628379</link>
      <author>Chun Ming Tan</author>
      <description>&quot;Bikash Singh&quot; &amp;lt;bikashsingh18@yahoo.com&amp;gt; wrote in message &amp;lt;gl1qgu$qvq$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; I want to evaluate the Performance of WiMAXIEEE 802.16 OFDM Physical Layer&lt;br&gt;
&amp;gt; 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  &lt;br&gt;
&amp;gt; &quot;??? Attempt to reference field of non-structure array.&quot;&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Error in ==&amp;gt; thesis at 8&lt;br&gt;
&amp;gt; if (IEEE80216params.Link.DIUC == 0 ) &amp;&amp; (IEEE80216params.Link.direction == 'Dlink')&lt;br&gt;
&lt;br&gt;
After the line &quot;global IEEE80216params;&quot;&lt;br&gt;
Add this line: &quot;IEEE80216params = IEEE80216_params();&quot; without quotes, provided you already have IEEE80216_params.m with all the parameters inside it.</description>
    </item>
    <item>
      <pubDate>Mon, 19 Jan 2009 12:09:02 -0500</pubDate>
      <title>Problem when i run a code in matlab</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/242666#622485</link>
      <author>Bikash Singh</author>
      <description>I want to evaluate the Performance of WiMAXIEEE 802.16 OFDM Physical Layer&lt;br&gt;
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  &lt;br&gt;
&quot;??? Attempt to reference field of non-structure array.&quot;&lt;br&gt;
&lt;br&gt;
Error in ==&amp;gt; thesis at 8&lt;br&gt;
if (IEEE80216params.Link.DIUC == 0 ) &amp;&amp; (IEEE80216params.Link.direction == 'Dlink')</description>
    </item>
    <item>
      <pubDate>Mon, 19 Jan 2009 14:33:01 -0500</pubDate>
      <title>Re: Problem when i run a code in matlab</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/242666#622512</link>
      <author>Sadik </author>
      <description>&quot;Bikash Singh&quot; &amp;lt;bikashsingh18@yahoo.com&amp;gt; wrote in message &amp;lt;gl1qgu$qvq$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; I want to evaluate the Performance of WiMAXIEEE 802.16 OFDM Physical Layer&lt;br&gt;
&amp;gt; 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  &lt;br&gt;
&amp;gt; &quot;??? Attempt to reference field of non-structure array.&quot;&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Error in ==&amp;gt; thesis at 8&lt;br&gt;
&amp;gt; if (IEEE80216params.Link.DIUC == 0 ) &amp;&amp; (IEEE80216params.Link.direction == 'Dlink')&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
It means that either IEEE80216params or IEEE80216params.Link is not a structure.&lt;br&gt;
&lt;br&gt;
The way to check that is&lt;br&gt;
&lt;br&gt;
t1 = isa(IEEE80216params,'struct')&lt;br&gt;
t2 = isa(IEEE80216params.Link,'struct')&lt;br&gt;
&lt;br&gt;
If IEEE80216params is a structure, but IEEE80216params.Link is not, then t1 = 1 and t2 = 0. </description>
    </item>
  </channel>
</rss>

