Re: [Discuss-gnuradio] Error in using Accessor method in GNU Radio 3.7. AttributeError: Object has no attribute

2017-04-10 Thread kunal.2904
The issue has solved as below: The accessor method "poll_complex_gain" defined in its *randphpert4_f_impl.h* file as below: gr_complex poll_complex_gain() const { return d_complex_gain; } The accessor method is added in the include/*.h file (*randphpert4_f.h*) as a virtual member function virt

Re: [Discuss-gnuradio] Error in using Accessor method in GNU Radio 3.7. AttributeError: Object has no attribute

2016-11-01 Thread kunal.2904
Hi Marcus, Adding virtual method in the include/*.h has solved the run-time error. However, I have noticed that function probe does not call the function "*poll_complex_gain*". I verified this by using two methods 1) Adding /printf/ in the function poll_complex_gain() 2) by adding WX GUI Static

Re: [Discuss-gnuradio] Error in using Accessor method in GNU Radio 3.7. AttributeError: Object has no attribute

2016-11-01 Thread kunal.2904
Hi Marcus, Thanks for your reply. The solution you suggested worked well. Regards, Kunal Sankhe -- View this message in context: http://gnuradio.4.n7.nabble.com/Error-in-using-Accessor-method-in-GNU-Radio-3-7-AttributeError-Object-has-no-attribute-tp61855p61860.html Sent from the GnuRadio mai

[Discuss-gnuradio] Error in using Accessor method in GNU Radio 3.7. AttributeError: Object has no attribute

2016-10-31 Thread kunal.2904
Hello Members, I am using GNU Radio 3.7.10.1 and have created a new OOT module using gr_modtool. I have created two blocks 1) Random Phase Perturbation 2) Apply BF weight, again using gr_modtool My goal is to update the parameter 'bf_weight' of Apply BF weight block using the function probe wit