在变量前打印 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以查看 Matlab 文档:http://www.mathworks。 co.uk/help/techdoc/ref/sprintf.html。
但答案是这样的:
The place to look is the Matlab documentation: http://www.mathworks.co.uk/help/techdoc/ref/sprintf.html.
But the answer is something like: