Extract/read data from a matrix of a specific column that starts from a specific row and reads the rest of the rows below it
24 ビュー (過去 30 日間)
古いコメントを表示
Hello, I have a matrix of data I imported from excel via the readmatrix() function and I want to extract a variable, lets say the time, but the first 11 rows are data that are not related to the time data. So I want to do something like: time = matrix(11:, 1). Essentially, a column vector that reads from a matrix, starting at row 11 but reads the entire rest of the data in the column. Sorry, this may be a beginner question. Any help is much appreciated!
0 件のコメント
採用された回答
Voss
2022 年 11 月 14 日
You've almost got it already.
To include row 11:
time = matrix(11:end,1);
To exclude row 11:
time = matrix(12:end,1);
2 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Import from MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!