What is wrong with my "if is integer" code
9 次查看(过去 30 天)
显示 更早的评论
I have a function roman= dectoroman(number) I want first to test out for if the number is an interger or not and I tried using the isinteger function but somehow its not working and not really sure why.
if isinteger(number)
x = [ 1000, 900, 500, 400, 100, 90, 50, 40, 10, 9, 5, 4, 1]; % Array of intergers (x)
y = {'M', 'CM', 'D', 'CD', 'C', 'XC', 'L', 'XL', 'X', 'IX', 'V', 'IV', 'I'};% array of strings equalling intergers above respectivly (y)
roman=[];%Instantiating
for ii = 1:numel(x)
number >= x(ii);
roman = [roman,repmat(y{ii},1,fix(number/x(ii)))];
number = rem(number,x(ii));
else
error('error')
end
end
end
wondering if there was anyway to test if its not an integer so i can just go if its to an integer ---> error end
2 个评论
采纳的回答
Azzi Abdelmalek
2012-10-8
编辑:Azzi Abdelmalek
2012-10-8
because
isinteger(1)=0 % for example
try
if fix(a)==a
0 个评论
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Particle & Nuclear Physics 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!