How to display both values and text as output

159 views (last 30 days)
Denis Taiwo
Denis Taiwo on 12 Feb 2016
Edited: KSSV on 12 Feb 2016
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 Comment
Stephen23
Stephen23 on 12 Feb 2016
How are the units stored? Do you have a separate string or cell array of strings?

Sign in to comment.

Answers (1)

KSSV
KSSV on 12 Feb 2016
Edited: KSSV on 12 Feb 2016
w = 500 ;
R = 4.7 ;
fprintf('%f grams or %f k Ohms',w,R)

Categories

Find more on Characters and Strings in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!