在变量前打印 0

发布于 2024-12-02 07:55:54 字数 209 浏览 1 评论 0原文

我知道在 c、c++ 和所有其他类型的编程代码中,您可以使用语法“%4d”来打印总共 4 位数字。如果变量只有一位数字,它将打印三个 0,无论您的变量是什么,如果您的变量是 2 位数字,则打印两个 0,依此类推。然而在 Octave 中,它似乎会打印出空格而不是 0。有没有办法强制它打印出零但保留指定的 4 个整数长度?

这是为了命名程序输出的文件,因此需要前导零来帮助组织输出的数据。

I know in c, c++, and all other kinds of programming code you can use the syntax "%4d" to print a total of 4 digits. If the variable is only one digit, it will print three 0's and whatever your variable is, if your variable is 2 digits, two 0's and so on. However in Octave it seems that it will print out spaces instead of 0's. Is there a way to force it to print out zeros but keep the specified length of 4 integers?

This is for naming files that the program is outputting so the leading zero's are needed to help organize the data that is outputted.

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

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

发布评论

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

评论(1

深陷 2024-12-09 07:55:54

可以查看 Matlab 文档:http://www.mathworks。 co.uk/help/techdoc/ref/sprintf.html

但答案是这样的:

sprintf('%04d', 42);  % Prints "0042"

The place to look is the Matlab documentation: http://www.mathworks.co.uk/help/techdoc/ref/sprintf.html.

But the answer is something like:

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