I try to use single mic noise suppression module. There is only few parameter open to us. When I saw help document, there are a lot of parameters. How could I control those parameters?
You can do this via Matlab, if you have Audio Weaver Pro. It looks like you do so you should be good to go. The command to show hidden variables is:
global AWE_INFO;
AWE_INFO.displayControl.showHidden = 1;
You can then edit whatever variables you want using Matlab commands outlined in section 2.1 of our Matlab Scripting API Guide, however most Module Variables are hidden for a reason. In other words, you could potentially "break" a Module if you change a variable value that is not intended to be changed.
6:30pm
Hello Jacky,
You can do this via Matlab, if you have Audio Weaver Pro. It looks like you do so you should be good to go. The command to show hidden variables is:
global AWE_INFO;
AWE_INFO.displayControl.showHidden = 1;
You can then edit whatever variables you want using Matlab commands outlined in section 2.1 of our Matlab Scripting API Guide, however most Module Variables are hidden for a reason. In other words, you could potentially "break" a Module if you change a variable value that is not intended to be changed.
Thanks,
Kevin