How to output Ohm symbol on command window?

I can't figure out how to output the ohm symbol. I've found some codes that say to add \Omega, but it does not work. I am trying to put it on an fprintf statement.

Answers (1)

This works for me in R2018b:
Ohm = char(hex2dec('03A9'));
fprintf(1, '1V/1A = 1%s\n', Ohm)
producing:
1V/1A = 1Ω

Categories

Asked:

on 21 Sep 2018

Answered:

on 21 Sep 2018

Community Treasure Hunt

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

Start Hunting!