📄 pgetdatatypes.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 + -