メインコンテンツ

RTW.TflCOperationEntryML クラス

名前空間: RTW

カスタム コード置換テーブル演算エントリ

説明

カスタム コード置換演算エントリを表します。RTW.TflCOperationEntryML からサブクラスを派生させ、サブクラス内でコード置換エントリの一致条件を指定する do_match メソッドを実装します。

classdef MyElemMultEntry < RTW.TflCOperationEntryML
    methods        
        function ent = do_match(hThis, ...
            hCSO, ... %#ok
            targetBitPerChar, ... %#ok
            targetBitPerShort, ... %#ok
            targetBitPerInt, ... %#ok
            targetBitPerLong, ... %#ok
            targetBitPerLongLong ) %#ok
            
            % Implement custom do_match function
            
        end
    end
end

作成

説明

classdef MyElemMultEntry < RTW.TflCOperationEntryML は、演算エントリ オブジェクトを作成するためのサブクラスを生成します。

バージョン履歴

R2010a で導入