我有一个带UITable的GUI(内置GUIDE)。我读了两个数值,并通过一系列步骤将浮点值转换为字符串。我希望用户能够单击包含两个值(现在为字符串)的UITable中的特定单元格,并将这些值作为浮点值读取。无论出于何种原因,我只能让我的代码读取第一个浮点值。我的代码(按顺序)如下。
步骤1:访问数据并转换为字符串并将字符串放在相应的列中。
function fillAnnotRangeInfo(obj, selectedAxes)
selectedAxesTag = selectedAxes.Tag;
rawAxesTag = obj.rawDataDisplayAxes.Tag;
psdAxesTag = obj.psdDataDisplayAxes.Tag;
% Depending on which axes the user clicks on, the units will either be Hz or s
if strcmp(selectedAxesTag, rawAxesTag)
dataRange = strcat(num2str(obj.t1), {'s'}, {' - '}, num2str(obj.t2), {'s'});
elseif strcmp(selectedAxesTag, psdAxesTag)
dataRange = strcat(num2str(obj.t1), {'Hz'}, {' - '}, num2str(obj.t2), {'Hz'});
end
obj.nextRow.AnnotRange = dataRange;
end
步骤2:确定用户是否在正确的单元格中单击并尝试读取两个浮点值。
% --- Executes when selected cell(s) is changed in existingAnnotationsTable.
function existingAnnotationsTable_CellSelectionCallback(hObject, eventdata, handles)
% hObject handle to existingAnnotationsTable (see GCBO)
% eventdata structure with the following fields (see MATLAB.UI.CONTROL.TABLE)
% Indices: row and column indices of the cell(s) currently selecteds
% handles structure with handles and user data (see GUIDATA)
% AE = handles.UserData;
Indices = eventdata.Indices;
% Determine if column is column of interest
if Indices(2) == 4
rangeData = handles.existingAnnotationsTable.Data;
rangeData = rangeData{Indices(1), Indices(2)};
annoRange = sscanf(rangeData, '%f')
else
end
return
最终,我得到的结果是如果我有一个字符串完全如下:“7.4250Hz - 32.502Hz”(或用“s”代替Hz),我的程序只会生成“7.4250” ”。更不用说了。我尝试过textscan,sscanf和strread。我明确地将我的过滤器设置为浮点(%f)。通过strread,我尝试将其设置为循环多次(strread('string', %f, 2)
)。我不知道还有什么可做,或尝试或改变。
关于未来读者的答案: 从技术上讲,任何一个答案都是“正确的”(我试过了)。它们都适用于略有不同的情况。如果你有一个固定的格式,Ben的答案很适合在一步中获得结果。我自己的答案可以解决跨越多个步骤的字符串,每个步骤都可以访问数据(对于执行多个操作很有用),同时仍然能够处理不同的格式。安德拉斯的答案对于在一步完成时提供结果非常有用,同时还能够处理各种格式。
答案 0 :(得分:2)
查看sscanf
文档here,如果您需要指定格式的字符串中的一组浮点数。以下是此页面中与您类似的示例:
tempString = '78°F 72°F 64°F 66°F 49°F';
degrees = char(176);
tempNumeric = sscanf(tempString, ['%d' degrees 'F'])'
tempNumeric =
78 72 64 66 49
在您的具体情况下,您可以尝试:
val = sscanf(rangedata,'%fHz - %fHz')
答案 1 :(得分:1)
对于固定格式,Ben的回答是正确的答案。但是,就我而言,我的格式会发生变化。因此,我提出的解决方案(经过测试和验证)是使用strtok
来解决"分解"将字符串分成两个单独的字符串,使其更易于管理,更易于解析。代码如下。思考?
% --- Executes when selected cell(s) is changed in existingAnnotationsTable.
function existingAnnotationsTable_CellSelectionCallback(hObject, eventdata, handles)
% hObject handle to existingAnnotationsTable (see GCBO)
% eventdata structure with the following fields (see MATLAB.UI.CONTROL.TABLE)
% Indices: row and column indices of the cell(s) currently selecteds
% handles structure with handles and user data (see GUIDATA)
% AE = handles.UserData;
Indices = eventdata.Indices;
% Determine if column is column of interest
if Indices(2) == 4
rangeData = handles.existingAnnotationsTable.Data;
rangeData = rangeData{Indices(1), Indices(2)};
[dataStart, dataRemain] = strtok(rangeData);
% In this case, since there will be just a '-' as the token...
% ...we don't care about the token and only save the remainder.
[~, dataEnd] = strtok(dataRemain);
dataStart = sscanf(dataStart, '%f')
dataEnd = sscanf(dataEnd, '%f')
else
end
答案 2 :(得分:1)
由于我自己关于在regexp
之前使用sscanf
的评论,这里有一个仅使用前者的解决方案:
str=regexp(data,'(?<dataStart>[\d\.]+)[^\d\.]+(?<dataEnd>[\d\.]+)','names');
之后str
将字段dataStart
和dataEnd
作为字符串(因此您之后需要num2str
)。请注意,这仅适用于简单的浮点数(但当然,如果需要,regexp
可能会更加复杂 ad nauseam 。好处是它可以适应更棘手的输入字符串,例如上面将在前两个数字之间处理任何数量和种类的非数字(和非点)文本。缺点是regexp
。