Decimals to Roman Numerals
2 views (last 30 days)
Show older comments
Hello I'm student currently studying MATLAB and I have a project to turn Decimals to Roman Numerals. I wanted to know if it was possible to make matlab recognize individual digits. eg. 1000 x1=1 x2=0 x3=0 x4=0
as then my code will follow into:
for number > 1000 if x1=1 roman= 'M' if x1= 2 roman='MM'
any help would be greatly appreciated thanks.
0 Comments
Accepted Answer
José-Luis
on 3 Oct 2012
a = 1000;
a = num2str(a);
a = a - '0';
a is a row vector, where each element is one of your x's
2 Comments
José-Luis
on 3 Oct 2012
If you want four digits, you could, for instance:
your_vals = repmat('0',1,4);
a = 900;
a = num2str(a);
your_vals(end-numel(a)+1:end) = a;
your_vals = your_vals - '0';
More Answers (1)
Andrei Bobrov
on 3 Oct 2012
function ans = dec2rom(z)
d = [ 1000, 900, 500, 400, 100, 90, 50, 40, 10, 9, 5, 4, 1];
c = {'M', 'CM', 'D', 'CD', 'C', 'XC', 'L', 'XL', 'X', 'IX', 'V', 'IV', 'I'};
[];
for ii = 1:numel(d)
if z >= d(ii)
ans = [ans,repmat(c{ii},1,fix(z/d(ii)))];
z = rem(z,d(ii));
end
end
% eg
>> dec2rom(2012)
ans =
MMXII
6 Comments
See Also
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!