Change block "Data Type conversion" to MATLAB Function Script.

回答(1 个)

Something like this?
function out = convert_type(in)
if ischar(in)
% convert character array to numeric array
out = str2num(in);
elseif isnumeric(in)
% convert numeric array to character array
out = num2str(in);
else
% unsupported type
out = in;
end
end

类别

帮助中心File Exchange 中查找有关 Logical 的更多信息

回答:

2021-12-26

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by