Can anybody help me in writing MATLAB code?i have an .xls file of 2950 sequence .i want a function to read my file and select sequence 1,11,21,31 and write it on another new .xls file, then select 2,12,22 and similarly uptill 10,20,30...etc

1 回表示 (過去 30 日間)
aroosa batool
aroosa batool 2016 年 11 月 2 日
回答済み: George 2016 年 11 月 2 日

回答 (1 件)

George
George 2016 年 11 月 2 日
% Pseudocode
T = readtable('file.xlsx');
for ii=1:10
rows = ii:10:height(T);
writetable(T(rows,:), ['filename' ii '.xlsx']);
end

カテゴリ

Help Center および File ExchangeSpreadsheets についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by