Clear Filters
Clear Filters

separate and regenerate

2 views (last 30 days)
Majid Al-Sirafi
Majid Al-Sirafi on 20 Mar 2012
High everyone How can I separate the no. into several numbers ….change on of them and regenerate it. For example I have the following no. 3456 , how can I separate it into 3,4,5 and 6 numbers …. and for example change 4 into 13… and regenerate the no to be 31356

Accepted Answer

Wayne King
Wayne King on 20 Mar 2012
You can first transform the number into a string:
x = 3456;
y = num2str(x);
y = [y(1) '13' y(3:end)];
x1 = str2num(y);

More Answers (0)

Categories

Find more on Startup and Shutdown in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!