Change the frequency of an array
4 次查看(过去 30 天)
显示 更早的评论
Hi All
I have an array (time) which will be combined with another and will create a signal. before I do the combination, I want to define an input parameter, that will be the frequency of this time array. so if the time array is 30 seconds and has a frequency of 100 Hz, I want to give the parameter freq=200Hz and arrange the array members in order that the time array becomes 15 seconds.
how would I do this
0 个评论
回答(1 个)
Sulaymon Eshkabilov
2020-11-27
According to you exercise statement, this one works ok.
f = input('Enter time frequency value: ');
t0=0; dt = 1/f; tend = 3000/f;
t = t0:dt:tend;
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrices and Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!