Reading data from textfile

1 回表示 (過去 30 日間)
moji
moji 2014 年 6 月 17 日
編集済み: Geoff Hayes 2014 年 6 月 17 日
I have one column of data with 600 rows and I want to know what does this statement do:
Column = data(1:11:end-10)

採用された回答

Geoff Hayes
Geoff Hayes 2014 年 6 月 17 日
編集済み: Geoff Hayes 2014 年 6 月 17 日
Create a 600x1 vector as follows
data = (1:1:600)';
which is just a column vector with values set as 1 2 3 4 5 6 ….600.
Now run the command
Column = data(1:11:end-10)
and observe the result. The data(1:11:end-10) extracts every eleventh row element (from data) starting at 1 and ending at the length of the array, given by end, less 10.

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by