フィルターのクリア

How to modify vector length ??

1 回表示 (過去 30 日間)
Nicolò Monaco
Nicolò Monaco 2021 年 3 月 15 日
コメント済み: Nicolò Monaco 2021 年 3 月 15 日
I have a column vector with 604800 values representig power generation for a system per second in a week. On the other side I have another column vector of 10080 values that are the electrical load per minute in a week. I have to find the mismatch, so they must have the same lenght. The 10080 vector must be translated from "values per minute" to "values per second"
I thought interpolation can be a solution, but I cannot do it for every two subsequent values. Ideas??

採用された回答

ANKUR KUMAR
ANKUR KUMAR 2021 年 3 月 15 日
編集済み: ANKUR KUMAR 2021 年 3 月 15 日
You can use interp1 to do that.
data1_per_second=randi(25,1,604800);
data2_per_minute=randi(25,1,10080);
data2_per_second=interp1([1:60:7*24*3600],data2_per_minute,[1:1:7*24*3600]);
  1 件のコメント
Nicolò Monaco
Nicolò Monaco 2021 年 3 月 15 日
Thank you, very useful!!!!!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMultirate Signal Processing についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by