How to pad all numbers in array ?

1 次查看(过去 30 天)
How can I pad a vector of number with zeros ? I am able to do it with a for loop but I was wondering if there is a neater way to do it ?
For example,
a = [1 2 3 4 5];
b = sprintf('%06d',a);
gives me '000001000002000003000004000005'
I would like it to be [000001 000002 .....];
  1 个评论
Stephen23
Stephen23 2016-12-11
编辑:Stephen23 2016-12-11
Floating point numeric values do not store explicit leading zeros. Even if you typed them, the zeros have no mathematical significance:
>> [000001,000002]==[1,2]
ans =
1 1

请先登录,再进行评论。

采纳的回答

Stephen23
Stephen23 2016-12-11
b = sprintf(' %06d',a{:});
^ add this space
  3 个评论
Stephen23
Stephen23 2016-12-11
编辑:Stephen23 2016-12-11
There is no simple way to create a cell array of strings, but this works:
c = cellfun(@(n)sprintf('%06d',n),a,'UniformOutput',false)
Or you can read about the undocumented function sprintfc:
RuiQi
RuiQi 2016-12-11
wow sprintfc works very nicely. and i will also read through the cellfun

请先登录,再进行评论。

更多回答(1 个)

Image Analyst
Image Analyst 2016-12-11
What does that mean? If they're strings, fine -- you can have leading zeros. But if it's a number leading zeros are ignored, so printing or using 000003 will be just the same use using 3. So are you looking for a cell array? If so, see the FAQ: http://matlab.wikia.com/wiki/FAQ#What_is_a_cell_array.3F
  3 个评论
RuiQi
RuiQi 2016-12-11
training_set = cell(size(train,1),1);
for i=1:size(train,1)
training_set{i,1} = sprintf('%06d',train(i));
end
this works but im looking for a method without using the for loop if its possible
RuiQi
RuiQi 2016-12-11
b = sprintf('%06d',[a{:}]);
doesnt work as well

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Data Type Conversion 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by