fprint problem in matlab
1 次查看(过去 30 天)
显示 更早的评论
回答(1 个)
Star Strider
2020-6-2
The fprintf fuction returns the number of bytes ouitput to the file.
2 个评论
Star Strider
2020-6-2
In the code in your image of it (not the actual code, that I had to type in manually), the value is in ‘outstr’. It writes 24 bytes to the file, and the full string to your Command Window (the default output), returning 24 in ‘outstr’.
If you want it to return the actual string to your workspace, use:
outstr = sprintf('The answer is %s', data1);
That works. (I tested it.)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Graph and Network Algorithms 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!