如何在disp()中使用tab?

发布于 2024-10-20 23:44:53 字数 102 浏览 10 评论 0原文

disp(['counter ' num2str(blk) (here I need a tab!!!) 'adc ' num2str(adc_nr)])
disp(['counter ' num2str(blk) (here I need a tab!!!) 'adc ' num2str(adc_nr)])

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

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

发布评论

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

评论(2

甜妞爱困 2024-10-27 23:44:53

尝试

disp(['counter ' num2str(blk) 9 'adc ' num2str(adc_nr)])

解释:通常如果你想插入一个制表符,你可以在字符串中放入一个'\t'。这对于 sprintf 效果很好,但 disp 命令无法正确解释它。所以一种解决方案是直接放入制表符的ASCII值,即'9'。

Try

disp(['counter ' num2str(blk) 9 'adc ' num2str(adc_nr)])

Explanation: Usually if you want to insert a tab, you put a '\t' in the string. This works well for sprintf, but the disp command doesn't interpret it properly. So one solution is to put the ASCII value of the tab directly, which is '9'.

半城柳色半声笛 2024-10-27 23:44:53

上面的答案是绝对正确的。但是,这里有一种更易读的方法来执行相同的操作:

disp("counter " + blk + char(9) + "adc " + adc_nr)

在 MATLAB R2023a Update 2 上尝试

The above answer is absolutely correct. However, here is a more readable way to do the same:

disp("counter " + blk + char(9) + "adc " + adc_nr)

Tried on MATLAB R2023a Update 2

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