Scaling Data for Comparison
2 ビュー (過去 30 日間)
古いコメントを表示
I have multiple arrays of different lengths that I would like to stretch/shrink for comparison. There are 90 trials of each task where I would like to plot diplacement vs. percent cycle. While I am able to normalize the percent cycle so I can graph multiple displacement vectors on top of one another, I cannot create a curve representative of the average of each of these displacement curves because each array has a different length.
I have tried using quantile(displacement, linspace(0,1,100)) to fit my curve into 100 equally spaced data points (representative of the percents) but it seems to rearrange my data points into increasing order.
Any suggestions as to how I can scale my data so the curves keep their shapes but I can also add vectors together for averaging?
0 件のコメント
採用された回答
Walter Roberson
2012 年 6 月 6 日
For each trial:
interp1( linspace(0, 1, length(displacement)), displacement, linspace(0,1,100) )
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Smoothing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!