Selecting specific number in place value of hunredth
15 次查看(过去 30 天)
显示 更早的评论
Hi! I need help, I've been looking a proper function to use but I don't get any, please help me I can't find a way to solve this. Let say I have a number 365 (and I want it to write a code that only read the most right digit which is 5).
Regards, Nurul
0 个评论
回答(1 个)
Prabhan Purwar
2021-5-5
Hi Nurul,
The individual digits in the number signify one's, ten's, hundred's, and thousand's position which could be obtained by dividing the number with the basis^(power of consideration) and getting remainder value by using mod function.
Kindly have a look at the following example code:
% For Natural numbers
x = 365;
floor(mod(x/1,10)) %unit's place
floor(mod(x/10,10)) %hundred's place
floor(mod(x/100,10)) %thousand's place
Hope it helps!
Thanks
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Continuous Wavelet Transforms 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!