gpt4 book ai didi

string - 是否可以将字符串与数字系列连接起来?

转载 作者:行者123 更新时间:2023-12-02 22:11:03 24 4
gpt4 key购买 nike

我有一个字符串(例如“STA”),我想制作一个元胞数组,它将我的字符串与从 1 到 X 的数字串联起来。

我希望代码执行类似下面的前循环的操作:

for i = 1:Num
a = [{a} {strcat('STA',num2str(i))}]
end

我希望最终结果的形式为 {<1xNum cell>}

a = 'STA1' 'STA2' 'STA3' ...

(我想将其设置为 ColumnFormat 数组中的一个合适的值)

ColumnFormat = {{a},...                 % 1
'numeric',... % 2
'numeric'}; % 3

最佳答案

我不确定是否从 STA1 开始,但这应该会为您提供一个以 STA 开头的列表(我想您可以从中删除第一个条目)。

N = 5;
[X{1:N+1}] = deal('STA');
a = genvarname(X);
a = a(2:end);

关于string - 是否可以将字符串与数字系列连接起来?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15299914/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com