Splitting numbers of vector in multiple parts

4 次查看(过去 30 天)
I have a vector which can vary in length, e. g. V' = [2022024 2023074 2022044 2023014 2023054]. Now my problem is that I need to split each number into specific parts:
2022024 -> 2022 024
2023074 -> 2023 074
...
Does anyone know how to do this in a loop?
Thanks in advance

采纳的回答

Bruno Luong
Bruno Luong 2023-7-25
编辑:Bruno Luong 2023-7-25
If string output is desired
V = [2022024 2023074 2022044 2023014 2023054]
V = 1×5
2022024 2023074 2022044 2023014 2023054
c = mat2cell(char(arrayfun(@num2str,V,'unif',0)),ones(length(V),1),[4 3])
c = 5×2 cell array
{'2022'} {'024'} {'2023'} {'074'} {'2022'} {'044'} {'2023'} {'014'} {'2023'} {'054'}
string(c)
ans = 5×2 string array
"2022" "024" "2023" "074" "2022" "044" "2023" "014" "2023" "054"

更多回答(4 个)

VBBV
VBBV 2023-7-25
编辑:VBBV 2023-7-25
If you want to split array of numbers, but using a loop , here's one way
V = string([2022024 2023074 2022044 2023014 2023054]);
for k = 1:length(V)
Num = char(V(k));
V_S(k,:) = [str2double(Num(1:4)) str2double(Num(5:7))];
end
V_S
V_S = 5×2
2022 24 2023 74 2022 44 2023 14 2023 54

Bruno Luong
Bruno Luong 2023-7-25
编辑:Bruno Luong 2023-7-25
If numerical value output is desired
V = [2022024 2023074 2022044 2023014 2023054]
V = 1×5
2022024 2023074 2022044 2023014 2023054
[floor(V/1000); mod(V,1000)]'
ans = 5×2
2022 24 2023 74 2022 44 2023 14 2023 54

Sachin Hegde
Sachin Hegde 2023-7-25
V= [2022024 2023074 2022044 2023014 2023054];
V = num2str(V);
tkn = regexp(V,'(\d+)(\d{3})','tokens');
V_split = str2double(vertcat(tkn{:}))
V_split = 5×2
2022 24 2023 74 2022 44 2023 14 2023 54

Bruno Luong
Bruno Luong 2023-7-25
编辑:Bruno Luong 2023-7-25
V = [2022024 2023074 2022044 2023014 2023054]
V = 1×5
2022024 2023074 2022044 2023014 2023054
s = string(V)';
s = [extractBefore(s,5) extractAfter(s,4)]
s = 5×2 string array
"2022" "024" "2023" "074" "2022" "044" "2023" "014" "2023" "054"

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

产品


版本

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by