How to reverse a number?
6 views (last 30 days)
Show older comments
Hi,
I want to reverse a number without using MATLAB functions "digitrevorder()" and "fliplr()". Please help. Thank you!
0 Comments
Answers (3)
Evan
on 18 Nov 2014
x = 1234;
s = num2str(x) - '0';
xr = polyval(s(end:-1:1),10)
7 Comments
John D'Errico
on 18 Nov 2014
Edited: John D'Errico
on 18 Nov 2014
A moderately interesting question is to find a solution in one line, without needing to form an intermediate variable. (And without the application of fliplr!) Seems trivial with that function.
Syed Haider
on 18 Nov 2014
A = [1 2 3 4; 5 6 7 8];
y = A(:,end:-1:1)
3 Comments
Syed Haider
on 18 Nov 2014
Yeah you are right :) I am sorry. Should i remove the answer? or may be it will be helpful for someone.
saurabh jare
on 7 Mar 2023
function ran=reverse_number(x)
%x=input('Enter the value for checking the palindromic= \n');
check=x;
ran=0;
while (check~=0)
ran=(ran*10)+mod(check,10);
check=fix(check/10);
end
0 Comments
See Also
Categories
Find more on Logical 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!