excelデータを正常に読み取らない
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
temp7 = readmatrix('試験結果_230315.xlsx', 'sheet', 'FEM解析_ma');
data7 = temp7(1:end, 6:end);
data7(isnan(data7)) = 0;
[N13, N14] = size(data7);
%上記エクセルのデータを1行目から読み取りたいのですが、なぜか9行目からの読み取りになってしまいます。
0 commentaires
Réponses (2)
Atsushi Ueno
le 15 Mar 2023
Range — 読み取るデータの部分を変更する事で、意図した範囲のデータを読み込める様になります。
temp7 = readmatrix('試験結果_230315.xlsx', 'sheet', 'FEM解析_ma','Range','A1'); % これで期待通りに読み込めるはず
data7 = temp7(1:end, 6:end);
data7(isnan(data7)) = 0;
[N13, N14] = size(data7);
0 commentaires
Atsushi Ueno
le 15 Mar 2023
opts = detectImportOptions('試験結果_230315.xlsx')
opts.DataRange % おそらくA9 になっている
opts.DataRange = 'A1'; % A1 に変更する
opts.Sheet = 'FEM解析_ma'; % 読み込むシート名を指定する
temp7 = readmatrix('試験結果_230315.xlsx', opts); % これでも期待通りに読み込めるはず
data7 = temp7(1:end, 6:end);
data7(isnan(data7)) = 0;
[N13, N14] = size(data7);
Voir également
Catégories
En savoir plus sur Automated Driving Toolbox dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!