MATLAB integer to roman numeral

조회 수: 9 (최근 30일)
Jacob Willett
Jacob Willett 2018년 10월 31일
답변: Rik 2018년 10월 31일
I am working on a lab that requires me to convert integers to roman numerals.
I have the following code:
function r = num2rom(x)
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'};
r = [];
for i = 1:numel(d)
if x >= d(i)
z = idivide(num, d(i));
r = [r, repmat(c(i), z)];
end
end
end
But I am getting several errors, these are the errors returning:
Undefined function 'ge' for input arguments of type 'cell'.
Error in Lab4>num2rom (line 112)
if x >= d(i)
Error in Lab4 (line 76)
num = num2rom(num)
I have been scratching my head at this, any help would be appreciated.
  댓글 수: 1
Rik
Rik 2018년 10월 31일
There is no ge function anywhere in your question. Please make sure to quote all the code that is needed to reproduce the error, and then paste all the red text here.

댓글을 달려면 로그인하십시오.

답변 (1개)

Rik
Rik 2018년 10월 31일
I wouldn't hard-code the combinations, but use the rule instead. My proposal would look something like this:
  1. convert the char array to a vector (using the cell you defined already)
  2. mark all values that apear before a larger value negative
  3. sum the vector elements
If you have trouble writing the code, just write a comment.

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by