How to Concatenate two large numbers in Matlab
Afficher commentaires plus anciens
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
Réponse acceptée
Plus de réponses (2)
Muruganandham Subramanian
le 26 Nov 2012
0 votes
a=10; b=20;
a1=num2str(a);
b1=num2str(b);
c=strcat(a1,b1)
4 commentaires
Rajesh
le 26 Nov 2012
Rajesh
le 26 Nov 2012
Muruganandham Subramanian
le 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
le 26 Nov 2012
Catégories
En savoir plus sur Creating, Deleting, and Querying Graphics Objects dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!