excelで選択した行のみ出力したい
9 ビュー (過去 30 日間)
古いコメントを表示
excelで選択した行のみのデータを出力する方法を教えてほしいです。
excelには奇数行にxの値
偶数行にyの値
が格納されています。
変数で指定したx,yのセットとなっている2行分のみのデータが欲しいです。
選択の方法をご存知でしたら教えていただきたいです。
よろしくお願いいたします。
1 件のコメント
採用された回答
madhan ravi
2019 年 1 月 29 日
Read the whole file and then split the essential datas like shown below:
datas=xlsread(...);
x=datas(1:2:end,:);
y=datas(2:2:end,:);
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!