如何访问 Matlab 系统对象的属性块中的变量?

How to access variables in the properties block of a Matlab System Object?

我正在 Matlab/Simulink 中开发一个简单的系统对象。

看起来像这样:

classdef realtime_header_detectorSO < matlab.System & matlab.system.mixin.Propagates
    % correlateHeader
    %
    % This template includes the minimum set of functions required
    % to define a System object with discrete state.

    properties
       Header
       %nrOfBitsInPreviousStep=0;
       s=100;
       d=zeros(1,s);



    end

    properties (DiscreteState)

    end

    properties (Access = private)
              max_nr_of_packets=20;
      max_packet_length_in_bytes=300;
      current_packet=1;
        % Pre-computed constants.
     %   h = commsrc.pn('GenPoly', [9 5 0],'NumBitsOut', 8,'InitialStates',ones(1,9));
  %   data=logical(zeros(max_nr_of_packets,max_packet_length_in_bytes*8));
    end

    methods (Access = protected)
        function setupImpl(obj,u)
            % Implement tasks that need to be performed only once, 
            % such as pre-computed constants.

        end

        function [maxCorr]= stepImpl(obj,u)
            eml.extrinsic('num2str');
             coder.extrinsic('sprintf');
            % Implement algorithm. Calculate y as a function of
            % input u and discrete states.
            %y = size(u,1);

                symbols=sign(u);
                c=abs(conv(flipud(obj.Header),[symbols; symbols]));

                maxCorr=max(c);    
              %  maxCorr
                if(maxCorr==36)

                    idx36=find(c(1:size(symbols,1))==36);
                    disp('header(s) detected at the following location(s) in bytes:');
                    disp(sprintf('%15.4f \n',idx36/8));
                    nrOfSymbols=size(symbols,1);
                    disp(['out of nr. of total symbols: ' num2str(nrOfSymbols)]);
                    disp('------');
                %    maxCorr
                end
            % y=obj.pBufferIdx;
        end

        function resetImpl(obj)
            % Initialize discrete-state properties.
        end

        function varargout = isOutputFixedSizeImpl(~)
             varargout = {true};
        end

        function varargout = getOutputSizeImpl(obj)
           varargout = {[1 1]};
        end
    end

end

然而,当我 compile/run 它时,我得到以下错误:

The System object name 'realtime_header_detectorSO' specified in MATLAB System block 'freqScanningRT/Sync and
Find Header/detect header' is invalid.

Caused by:
    Undefined function or variable 's'.

但是 (!) 下面的代码可以正常编译和运行:

classdef realtime_header_detectorSO < matlab.System & matlab.system.mixin.Propagates
    % correlateHeader
    %
    % This template includes the minimum set of functions required
    % to define a System object with discrete state.

    properties
       Header
       %nrOfBitsInPreviousStep=0;
       s=100;
  %     d=zeros(1,s);



    end

    properties (DiscreteState)

    end

    properties (Access = private)
              max_nr_of_packets=20;
      max_packet_length_in_bytes=300;
      current_packet=1;
        % Pre-computed constants.
     %   h = commsrc.pn('GenPoly', [9 5 0],'NumBitsOut', 8,'InitialStates',ones(1,9));
  %   data=logical(zeros(max_nr_of_packets,max_packet_length_in_bytes*8));
    end

    methods (Access = protected)
        function setupImpl(obj,u)
            % Implement tasks that need to be performed only once, 
            % such as pre-computed constants.

        end

        function [maxCorr]= stepImpl(obj,u)
            eml.extrinsic('num2str');
             coder.extrinsic('sprintf');
            % Implement algorithm. Calculate y as a function of
            % input u and discrete states.
            %y = size(u,1);
                disp(obj.s);
                symbols=sign(u);
                c=abs(conv(flipud(obj.Header),[symbols; symbols]));

                maxCorr=max(c);    
              %  maxCorr
                if(maxCorr==36)

                    idx36=find(c(1:size(symbols,1))==36);
                    disp('header(s) detected at the following location(s) in bytes:');
                    disp(sprintf('%15.4f \n',idx36/8));
                    nrOfSymbols=size(symbols,1);
                    disp(['out of nr. of total symbols: ' num2str(nrOfSymbols)]);
                    disp('------');
                %    maxCorr
                end
            % y=obj.pBufferIdx;
        end

        function resetImpl(obj)
            % Initialize discrete-state properties.
        end

        function varargout = isOutputFixedSizeImpl(~)
             varargout = {true};
        end

        function varargout = getOutputSizeImpl(obj)
           varargout = {[1 1]};
        end
    end

end

所以我可以在 stepImpl(obj,u) 中访问 s 作为 obj.s 但我无法访问属性块内的 s,它被定义了!

现在这很令人困惑。

有没有办法在属性块中访问 s

问题是我必须使用属性块,因为如果我尝试这样做:

 function setupImpl(obj,u)
        % Implement tasks that need to be performed only once, 
        % such as pre-computed constants.
        d=zeros(1,obj.s);

  end

然后我得到:

Error due to multiple causes.

Caused by:
    Problem creating simulation target MEX-file for model 'freqScanningRT'.
    Simulink detected an  error
     'Computed maximum size is not bounded.
    Static memory allocation requires all sizes to be bounded.
    The computed size is [1 x :?].'.

     The error occurred for MATLAB System block 'freqScanningRT/Sync and Find Header/detect header'. See line
     34, column 15 in file
     'path/realtime_header_detectorSO.m'.
     The error was detected during code generation phase.
     Start code generation report.

     To prevent this error, use one of the following:
     * Modify the System object to avoid code that does not support code generation.
     * Change 'Simulate using' parameter to 'Interpreted Execution'.

知道如何引用 properties 块中的变量吗?

一定有办法做到这一点。

你应该可以使用

properties
       s = 100;
       d = zeros(1,100);
end

对吧?如果您已经将 100 作为 s 的默认值,您还应该能够将其作为 d.

的默认值的一部分提供

我猜您是想避免这样做,因为重复“100”会让您感到不自在。但我也猜想,“100”确实是您的系统所依赖的某种神奇数字;所以真的,无论是否重复,您都应该尝试将其作为常量提取出来。

所以在那种情况下,您可以通过

改进
properties (Constant)
    MYCONSTANT = 100;
end

properties
       % Reference Constant class properties with the class name
       s = realtime_header_detectorSO.MYCONSTANT;
       d = zeros(1, realtime_header_detectorSO.MYCONSTANT);
end

您将无法完成您最初尝试做的事情 - 在定义另一个时,无法在 属性 定义块中引用一个 属性 的名称属性(即使您可以在方法中很好地引用它)。我想我明白为什么您会感到困惑 - 但为了消除您的困惑,请注意您无法保证 MATLAB 在其中实例化属性默认值的 order。如果它在创建 s 之前尝试创建 d,显然会失败。

您可以通过在构造函数中初始化属性来避免这个问题。