Write a self contained program which will take a signal and compute its Cosine transform
1 次查看(过去 30 天)
显示 更早的评论
I'm new to MATLAB and was wondering if anyone could help me with this problem? I don't know where to start.
Write a self contained program which will take a signal and compute its Cosine transform. Have the program decide how many significant coefficients are necessary for a given input tolerance (such as .01, or .001).
2 个评论
回答(1 个)
Walter Roberson
2016-4-18
You use a "for" loop from 0 to half of the number of points. In each one, you use a vectorized cos() calculation and add the vector of results to your running total. Like
total = zeros(size(x));
for K = 1 : 5
total = total + cos(f(x,K));
end
for some f(x,K)
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!