khalilabby asked . 2020-11-30

SampleRateConvertion error in plugin

I´m trying to implement a x4 oversampling process but I´m having difficulties on how let the SampleRateConverter sytem object knows about sample rate used.
When compiling the example attached for plugin generation, the following error shows up: “Failed to compute constant value for nontunable property 'SampleRate'. In code generation, nontunable properties can only be assigned constant values.”
I'd really appreciate if someone can give me a hint on how fix/treat this.
classdef (StrictDefaults)DistoLab_Test2 < matlab.System & audioPlugin

    
    properties        
        GainDisto=0;
        Input=0;
        Volume=0;    
    end
    
    properties (Constant, Hidden)
        % Define the plugin interface
        PluginInterface = audioPluginInterface( ...
            'InputChannels',2,...
            'OutputChannels',2,...
            'PluginName','DistoLab_Test2',...
             audioPluginParameter('Volume', ...
            'DisplayName',  'Out', ... 
            'DisplayNameLocation','none',...
            'Label','dB', ...
            'Mapping', { 'lin', -15, 15}, ...
            'Style', 'rotaryknob', 'Layout', [4 6]),...
            audioPluginParameter('Input', ...
            'DisplayName',  'In', ... 
            'DisplayNameLocation','none',...
            'Label','dB', ...
            'Mapping', { 'lin', -5, 5}, ...
            'Style', 'rotaryknob', 'Layout', [4 3]),...           
            audioPluginParameter('GainDisto', ...
            'DisplayName',  'Saturation', ... 
            'DisplayNameLocation','none',...
            'Style', 'rotaryknob', 'Layout', [4,5],...
            'Mapping', { 'lin', 0, 10}, ...
            'Filmstrip','knob_67_black.png', ...                                   %<--
            'FilmstripFrameSize',[80,80]), ...
            audioPluginGridLayout('RowHeight', [30 90 10 100 37], ... 
            'ColumnWidth', [30 100 100 20 100 100 20 80 80 80 60], 'Padding', [10 10 10 10]));
   
    end    
    
    properties (Access = private)    

        Up4;
        Down4;

    end
    
    methods
        % Constructor
        function plugin = DistoLab_Test2
  
            plugin.Up4=dsp.SampleRateConverter;
            plugin.Down4=dsp.SampleRateConverter;

            calculateSampleRates(plugin);
            
        end
        
    end

    methods(Access = protected)

        function out = stepImpl(plugin, in)

            inadjusted=in*(10^(plugin.Input/20)); % Incoming signal adjusted by Input Gain

%SampleRateConverter x4 process
    
    v=step(plugin.Up4,inadjusted);

    disto=(v*plugin.GainDisto).^5; % input distorted
        
    outdisto=(disto)*(10^(plugin.Volume/20));
    
    out = step(plugin.Down4,outdisto);  
    
         end
     
        function resetImpl(plugin)

            reset(plugin.Up4);
            reset(plugin.Down4);

        end
        function calculateSampleRates(plugin)
            
           plugin.Up4.InputSampleRate=getSampleRate(plugin);
           plugin.Up4.OutputSampleRate=4*getSamplerate(plugin);
           
           plugin.Down4.InputSampleRate=4*getSampleRate(plugin);
           plugin.Down4.OutputSampleRate=getSampleRate(plugin);

        end
  
    end
    
end

matlab , signal , transform, signal processing

Expert Answer

Kshitij Singh answered . 2024-04-28 06:45:05

There are some limitations with codegen and the resampling objects. If you have a hard-coded ratio of 4, the easiest way around it might be to use a nominal sample rate, such as 48kHz. The added benefit is that avoid calls to getSampleRate will be faster.

function calculateSampleRates(plugin)
    sampleRate = 48000; % use a nominal rate
    plugin.Up4.InputSampleRate=sampleRate;
    plugin.Up4.OutputSampleRate=4*sampleRate;
    plugin.Down4.InputSampleRate=4*sampleRate;
    plugin.Down4.OutputSampleRate=sampleRate;
end

The following challenge will be that the input of the sample rate converter will be of unknown size. You can get around that by looping over partitions of a maximum size (like 4096). Something like this might work for you:

 

% Replaces out = step(plugin.Down4,outdisto);
out = zeros(size(in));
for ii = 1:4096:size(in,1)
    endIdx = min(ii+4095,size(in,1));
    xin = outdisto(4*ii-3:4*endIdx,:);
    assert(size(xin,1)<=4*4096); % Tell codegen xin won't be larger than 4x4096
    out(ii:endIdx,:) = step(plugin.Down4,xin);
end


Not satisfied with the answer ?? ASK NOW

Frequently Asked Questions

MATLAB offers tools for real-time AI applications, including Simulink for modeling and simulation. It can be used for developing algorithms and control systems for autonomous vehicles, robots, and other real-time AI systems.

MATLAB Online™ provides access to MATLAB® from your web browser. With MATLAB Online, your files are stored on MATLAB Drive™ and are available wherever you go. MATLAB Drive Connector synchronizes your files between your computers and MATLAB Online, providing offline access and eliminating the need to manually upload or download files. You can also run your files from the convenience of your smartphone or tablet by connecting to MathWorks® Cloud through the MATLAB Mobile™ app.

Yes, MATLAB provides tools and frameworks for deep learning, including the Deep Learning Toolbox. You can use MATLAB for tasks like building and training neural networks, image classification, and natural language processing.

MATLAB and Python are both popular choices for AI development. MATLAB is known for its ease of use in mathematical computations and its extensive toolbox for AI and machine learning. Python, on the other hand, has a vast ecosystem of libraries like TensorFlow and PyTorch. The choice depends on your preferences and project requirements.

You can find support, discussion forums, and a community of MATLAB users on the MATLAB website, Matlansolutions forums, and other AI-related online communities. Remember that MATLAB's capabilities in AI and machine learning continue to evolve, so staying updated with the latest features and resources is essential for effective AI development using MATLAB.

Without any hesitation the answer to this question is NO. The service we offer is 100% legal, legitimate and won't make you a cheater. Read and discover exactly what an essay writing service is and how when used correctly, is a valuable teaching aid and no more akin to cheating than a tutor's 'model essay' or the many published essay guides available from your local book shop. You should use the work as a reference and should not hand over the exact copy of it.

Matlabsolutions.com provides guaranteed satisfaction with a commitment to complete the work within time. Combined with our meticulous work ethics and extensive domain experience, We are the ideal partner for all your homework/assignment needs. We pledge to provide 24*7 support to dissolve all your academic doubts. We are composed of 300+ esteemed Matlab and other experts who have been empanelled after extensive research and quality check.

Matlabsolutions.com provides undivided attention to each Matlab assignment order with a methodical approach to solution. Our network span is not restricted to US, UK and Australia rather extends to countries like Singapore, Canada and UAE. Our Matlab assignment help services include Image Processing Assignments, Electrical Engineering Assignments, Matlab homework help, Matlab Research Paper help, Matlab Simulink help. Get your work done at the best price in industry.