separate and regenerate

조회 수: 1 (최근 30일)
Majid Al-Sirafi
Majid Al-Sirafi 2012년 3월 20일
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

채택된 답변

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 LaTeX에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by