geosciz
geosciz

Reputation: 321

How to type a per mille symbol (‰) in MATLAB?

Could anyone please tell me how to type a per mille symbol (‰) in MATLAB?

Upvotes: 0

Views: 4412

Answers (1)

Shai
Shai

Reputation: 114866

You can print it on figures, using its unicode value

figure;text(.5,.5,char(8240))

Or simply using %c in string formatting:

fprintf(1, '%c\n', char(8240) )
‰

Upvotes: 2

Related Questions