MATLAB: How to change the properties of a DSP “Array Plot” block from the command line

apiDSP System Toolboxmodifyvector

Best Answer

Get a handle to the array plot configuration object then modify the desired properties. For example,
>> MyScopeConfiguration = get_param(gcbh,'ScopeConfiguration')
>> MyScopeConfiguration.YLimits = [-1 100];
See here for the full example and configurable properties: