Clear Filters
Clear Filters

How to Concatenate two large numbers in Matlab

12 views (last 30 days)
Hello everyone, This could come as a very basic question. I'm trying to concate 2 large numbers. For example: 5602007248 and 5602007720. The answer should be 56020072485602007720.
Currently, i'm trying converting to str and using strcat then converting back to num, but that doesnt seem to work somehow.
Help really appreciated. Thanks Raj

Accepted Answer

Matt J
Matt J on 26 Nov 2012
Edited: Matt J on 26 Nov 2012
str2num(sprintf('%d%d',5602007248,5602007720))

More Answers (2)

Muruganandham Subramanian
Muruganandham Subramanian on 26 Nov 2012
a=10; b=20;
a1=num2str(a);
b1=num2str(b);
c=strcat(a1,b1)
  4 Comments
Muruganandham Subramanian
Muruganandham Subramanian on 26 Nov 2012
It's working fing fine.. If you stil have a doubt you can compare by ur expected and caluculated by 'strcmp'.I have tried that too..
Rajesh
Rajesh on 26 Nov 2012
The problem is that when i use num2str for a large number, it rounds the number and the final result wasnt the same, but the solution by Matt works great for large numbers.
Thanks for the response Muruganandham.

Sign in to comment.


Matt J
Matt J on 26 Nov 2012
n=floor(log10(5602007720));
10^(n+1)*5602007248 + 5602007720

Categories

Find more on Characters and Strings 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!