My program doesn't write data to file
显示 更早的评论
I don't know why this program doesn't work. I think is good, but I don't know.
clc, clear;
plik = fopen('dane.txt','w');
x = -5:1:5;
y = -5:1:5;
z = sin(x).*exp(y.*y);
fprintf(plik,'\tx\ty\tz\n%6.3f\t%6.3f\t%6.3f\n', [x;y;z]);
fclose(plik);
回答(1 个)
Cris LaPierre
2021-3-29
0 个投票
Works for me. What do you mean by "this program doesn't work"? Do you mean it's not creating the file, or the file contents are not what you wanted?
类别
在 帮助中心 和 File Exchange 中查找有关 Low-Level File I/O 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!