フィルターのクリア

Specify max limit to data from data file

2 ビュー (過去 30 日間)
doliph
doliph 2013 年 10 月 10 日
コメント済み: doliph 2013 年 10 月 10 日
end
D = load('data.txt');
x = D(:,1);
y = D(:,2);
I would like to specify data to be passed to a function to be limited to N indices.
Anyone have any suggestions?
Cheers!

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 10 月 10 日
x = D(1:N,1);
y = D(1:N,2);
  1 件のコメント
doliph
doliph 2013 年 10 月 10 日
Brilliant. Thanks!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraphics Object Identification についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by