Display multiple output (integers and string) using fprintf
34 次查看(过去 30 天)
显示 更早的评论
Hi, I am trying to display something like '23 Celsius equal to 296,15 Kelvin' as the final output of a function that does this computation. In my script I have something like this:
A = T;
B = unitFrom;
C = result;
D = unitTo;
Where A is my input temperature (for example 23), B is 'Celsius', C is the converted temperature (in this example 296,15) e D is 'Kelvin'. I have a program where the user is asked to define A. B, and D and it will compute C. Finally, I would like to print the all conversion in a string like "'23 Celsius equal to 296,15 Kelvin'"
I have tried using fprintf but I didn't succeed.
0 个评论
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Characters and Strings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!