Info
此问题已关闭。 请重新打开它进行编辑或回答。
fprintf to create a table of numbers
2 次查看(过去 30 天)
显示 更早的评论
Hi everyone
so im trying to print a table of numbers here is my code
x = linspace(0,4,10);
y = sinh(x);
z = cosh(x);
g = [x;y;z]
fid = fopen('C:\Users\User\Desktop\myname\Out.txt', 'w');
fprintf('x\t sinh(x)\t cosh(x)\n');
fprintf(fid, '%6.2f %12.8f %12.8f\n', g);
fclose(fid);
if i want to triple the numbers in the outcome how can i do it?
3 个评论
Saumya Goel
2019-5-24
I am not sure if you meant by triple the numbers as "Multiply by 3". Then you can simply use multiply.
Please refer to this example: https://www.mathworks.com/matlabcentral/answers/329872-printing-table-susing-fprintf
回答(0 个)
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!