Code Showing "Undefined function or variable 'q'. Error in test (line 66) if(c~=q) " error Please help
    4 views (last 30 days)
  
       Show older comments
    
Line 65 to 70 is shown below
for r=1:1:c
if(r~=q)
w=refweight*p(r)*1/p(q);
disp(w)
end
end
Why is it showing "Undefined function or variable 'q'. Error in test (line 66) if(c~=q) " ??
0 Comments
Answers (1)
  Chance
 on 15 Nov 2013
         From all that you've shown you never defined q as anything. Either variables being used must be defined and of same length (or one  of them be a constant) before the logical test (~=,<=,ect) can be performed.
0 Comments
See Also
Categories
				Find more on Results, Reporting, and Test File Management in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!