matlab 的 fortran 格式等效项

发布于 2024-08-30 20:40:47 字数 355 浏览 4 评论 0原文

matlab相当于

write(1,'("Speed, resistance, power",3f8.2)')(a(i),i=1,3)

我已经尝试过

a = [10. 20. 200.]
fprintf(unit1,'a = 3%8.1e',a)

但我仍然遇到问题(整个matlab输出格式化的事情)。


为肯尼编辑:对于上面给出的 a 值,它将给出(在新行中):

Speed, resistance, power   10.00   20.00  200.00

What would be matlab's equivalent of

write(1,'("Speed, resistance, power",3f8.2)')(a(i),i=1,3)

I've tried

a = [10. 20. 200.]
fprintf(unit1,'a = 3%8.1e',a)

but I'm still having trouble with it (the whole matlab output formatting thing).


Edit for Kenny: for the values of a as given above, it would give (in a new row):

Speed, resistance, power   10.00   20.00  200.00

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

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

发布评论

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

评论(1

深海不蓝 2024-09-06 20:40:47

我使用 1 作为 fileID 写入命令窗口,并在末尾添加了一个换行符,因为它更漂亮,但这应该会重现您想要的内容

a = [10,20,200;20,30,300];

fprintf(1,'Speed, resistance, power%8.2f%8.2f%8.2f\n',a')

Speed, resistance, power   10.00   20.00  200.00
Speed, resistance, power   20.00   30.00  300.00

编辑

假设一个数组a。进一步假设我们想要逐行打印它

a = [10,20,200;20,30,300];

%# find number of columns
nCols = size(a,2);

%# create format string for fprintf. Use repmat to replicate the %8.2f's
fmtString = ['Speed, resistance, power',repmat('%8.2f',1,nCols),'\n'];

%# print
fprintf(1,fmtString,a')

Speed, resistance, power   10.00   20.00  200.00
Speed, resistance, power   20.00   30.00  300.00

注意:这会在同一行上打印所有行(谢谢,@JS)。

fprintf('Speed, resistance,power')
fprintf('%8.2f',a')
fprintf('\n')

I'm using 1 for fileID to write to the command window, and I put a newline in the end because it's prettier, but this should reproduce what you want

a = [10,20,200;20,30,300];

fprintf(1,'Speed, resistance, power%8.2f%8.2f%8.2f\n',a')

Speed, resistance, power   10.00   20.00  200.00
Speed, resistance, power   20.00   30.00  300.00

EDIT

Assume an array a of unknown dimensions. Assume further that we want to fprint it row by row

a = [10,20,200;20,30,300];

%# find number of columns
nCols = size(a,2);

%# create format string for fprintf. Use repmat to replicate the %8.2f's
fmtString = ['Speed, resistance, power',repmat('%8.2f',1,nCols),'\n'];

%# print
fprintf(1,fmtString,a')

Speed, resistance, power   10.00   20.00  200.00
Speed, resistance, power   20.00   30.00  300.00

Note: This prints all rows of a one after the other on the same line (thanks, @JS).

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