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

2 次查看(过去 30 天)
How to Change block "Data Type conversion" to MATLAB Function Script?

回答(1 个)

Voss
Voss 2021-12-26
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

类别

Help CenterFile Exchange 中查找有关 String 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by