Reputation: 321
Could anyone please tell me how to type a per mille symbol (‰) in MATLAB?
Upvotes: 0
Views: 4412
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