matlab科学计数法问题

发布于 2024-11-14 19:59:20 字数 167 浏览 4 评论 0原文

我遇到一个问题,将“313397E9”等 8 位字符串传递到 Excel,然后读取为数字“313397000000000”或“3.133970e+014”。

然后,Matlab 会读取该值并将其识别为数字,而不是字符串。将其转换回 8 位字符串的最简单方法是什么?

预先感谢您的所有帮助。

I have an issue where an 8-digit string such as '313397E9' is being passed into excel, then read as the number '313397000000000', or '3.133970e+014'.

This is then being read by Matlab and recognized as the number, not the string. What would be the easiest way to convert it back to the 8-digit string?

Thanks in advance for all your help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤君无依 2024-11-21 19:59:20

正则表达式来救援!您可以使用REGEXPREP 将尾随零转换为 Ex,其中 x 是您刚刚替换的零的数量。

%# convert the number to a string
nn = num2str(3.133970e+014)

nn =
313397000000000

%# replace zeros using regexprep
regexprep(nn,'([0]*)','E${num2str(length($1))}')
ans =
313397E9

如果 nn 是字符串元胞数组,这也适用,顺便说一句,因此您可以一次性转换数字列表。

Regular expressions to the rescue! You can use REGEXPREP to convert the trailing zeros into Ex, where x is the number of zeros you just replaced.

%# convert the number to a string
nn = num2str(3.133970e+014)

nn =
313397000000000

%# replace zeros using regexprep
regexprep(nn,'([0]*)','E${num2str(length($1))}')
ans =
313397E9

This also works if nn is a cell array of strings, btw, so you can convert your list of numbers in one go.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文