Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the variable delta in the main and the line: Y_Q = blkproc(Y_dct, [8 8], @Quantization);

I need the function Quantization to know about the variable delta.

Can someone please help me? thanks..

share|improve this question

1 Answer

If Quantization is a subfunction, it will be able to access variables in the outer function (you can also introduce a subfunction that calls Quantization with the callback arguments and any additional values you need).

Another method is to make your shared variable global, using the global statement at the top of each function that should share it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.