Create a character cell in ascending order

3 次查看(过去 30 天)
i want to create a cell of 1000*1 , containing the strings in ascending order.
Let's say variable1, variable2,....variable999,variable1000. How can i do that with for loop?

采纳的回答

madhan ravi
madhan ravi 2019-1-9
编辑:madhan ravi 2019-1-9
With loop:
for i =1:1000
{sprintf('variable%d',i)} % if you remove { } it's string array
end
Without loop:
compose('variable%d',(1:1000).') % cell array
compose("variable%d",(1:1000).') % string array

更多回答(1 个)

Stephen23
Stephen23 2019-1-9
编辑:Stephen23 2019-1-9
N = 1000;
C = cell(1,N);
for k = 1:N
C{k} = sprintf('variable%d',k);
end

类别

Help CenterFile Exchange 中查找有关 Multidimensional Arrays 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by