⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pgetdatatypes.m

📁 利用Stateflow 进行嵌入式代码开发很好用
💻 M
字号:
function [slDt, rtwDt] = pGetDataTypes(inDataType)
%PGETDATATYPES Returns the SL (SS_xxxx) and RTW (xxxx_T) DataTypes according 
%   to the input (xxxx).
%

%   Copyright 2005 The MathWorks, Inc.
%   $File: $
%   $Revision: $
%   $Date:  $

rtwDataTypes = pGetRTWDataTypes;
slDataTypes = pGetSLDataTypes;
cDataTypes = pGetCDataTypes;

[s, e, t] = regexp(inDataType, '(const)?\s*(\w+)');
dataType = inDataType(t{1}(2,1):t{1}(2,2));

idx = find(strcmp(dataType, cDataTypes));

if ~isempty(idx)
    slDt = slDataTypes{idx};
    rtwDt = rtwDataTypes{idx};
else
    slDt = 'unknow';
    rtwDt = 'unknow';
end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -