フィルターのクリア

how to create a vector for more than one frame of data?

1 回表示 (過去 30 日間)
Amanda
Amanda 2023 年 2 月 25 日
回答済み: Walter Roberson 2023 年 2 月 25 日
I am working on gait data and need to make a vector that corresponds to the time of each frame. The time vector needs to start at 0

回答 (1 件)

Walter Roberson
Walter Roberson 2023 年 2 月 25 日
Generally speaking, if you have samples that are not marked with a corresponding time, but you know the starting time (such as 0) and you know the sampling frequency, then you can calculate times as
time_vector = (0:number_of_samples-1) ./ SamplingFrequency;
number_of_samples would typically have been extracted using size() of an array. SamplingFrequency would have to be known ahead of time (or extracted from the information available in the dataset.)

カテゴリ

Help Center および File ExchangeData Type Conversion についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by