How to display both values and text as output

145 次查看(过去 30 天)
Hey MATLAB users,
I'm trying to show a numerical value with its unit in the command window. For example, 500 grams or 4.7k Ohms. Any suggestions?
Quick replies are much appreciated, thanks.
  1 个评论
Stephen23
Stephen23 2016-2-12
How are the units stored? Do you have a separate string or cell array of strings?

请先登录,再进行评论。

回答(1 个)

KSSV
KSSV 2016-2-12
编辑:KSSV 2016-2-12
w = 500 ;
R = 4.7 ;
fprintf('%f grams or %f k Ohms',w,R)

类别

Help CenterFile Exchange 中查找有关 Characters and Strings 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by