Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我delta在 main 和 line 中有变量:Y_Q = blkproc(Y_dct, [8 8], @Quantization);
delta
Y_Q = blkproc(Y_dct, [8 8], @Quantization);
我需要函数Quantization来了解变量delta。
Quantization
有人可以帮帮我吗?谢谢..
如果Quantization是一个子函数,它将能够访问外部函数中的变量(您还可以引入一个Quantization使用回调参数和您需要的任何附加值调用的子函数)。
另一种方法是使您的共享变量成为全局变量,使用global每个应该共享它的函数顶部的语句。
global