Using text, 2 variables, and decimals in fprintf
显示 更早的评论
fprintf(["The value you entered "+'%.1f°C\n',temp + "is equal to "+'%.1f°F\n',ans])
Can someone help me make this line work. I feel like I'm close but I keep getting errors.
采纳的回答
更多回答(1 个)
Cris LaPierre
2020-9-26
The documentation page is a great place to start. There, you'll see that the variables have to come at the end. Also, you don't need square brackets.
fprintf("The value you entered "+'%.1f°C\n' + "is equal to "+'%.1f°F\n',10,20)
The value you entered 10.0°C
is equal to 20.0°F
类别
在 帮助中心 和 File Exchange 中查找有关 Entering Commands 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!