How to select the length

3 ビュー (過去 30 日間)
Sofia Santos
Sofia Santos 2020 年 5 月 11 日
コメント済み: Sofia Santos 2020 年 5 月 11 日
Hello!!
I have some values in a text file and I just want the values ​​up to the 10000 th position, so I choosed the length, N, 10000. I don't know how to choose the values of EDA just until 10000, because the length (EDA)=14000.
Thank you very much!
data_org = importdata('signal.txt','\t',7); %text file with 7 columms
EDA=data_org.data;
EDA= EDA(:,6); %I only want the values in column 6
N = 10000;
fs = 1000;
T=N/fs;
t = (1:N)/fs;
f = (1:N)/T;
plot(t,EDA); %wrong because the length have to be the same
  2 件のコメント
Walter Roberson
Walter Roberson 2020 年 5 月 11 日
N = 10000;
EDA=data_org.data;
EDA = EDA(1:N,6);
Sofia Santos
Sofia Santos 2020 年 5 月 11 日
Thank you!!!

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

回答 (0 件)

カテゴリ

Help Center および File ExchangePrinting and Saving についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by