creating new number from two numbers
이전 댓글 표시
if i need to create a new number from two given numbers for example : a=4 b=9 new number should be a times b (9999). is there a command to do that ?
채택된 답변
추가 답변 (2개)
Guillaume
2014년 12월 2일
Using conversion to string and back this is easy but maybe not fast:
repeat = 3;
number = 12;
repeatednumber = str2num(repmat(num2str(number), 1, repeat))
댓글 수: 1
Guillaume
2014년 12월 2일
Or staying exclusively numeric:
repeat = 3;
number = 12;
temp = repmat(number, 1, repeat);
repeatednumber = sum(temp .* 10.^((numel(temp)-1:-1:0)*(1+floor(log10(number)))))
Andrei Bobrov
2014년 12월 2일
편집: Andrei Bobrov
2014년 12월 2일
sum(10.^(a-1:-1:0)*b)
or
polyval(b*ones(1,a),10)
add
polyval(b*ones(1,a),10^ceil(log10(b)))
카테고리
도움말 센터 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!