Can I use interpolation to small scale?
3 ビュー (過去 30 日間)
古いコメントを表示
採用された回答
Askic V
2022 年 12 月 5 日
編集済み: Askic V
2022 年 12 月 5 日
Not really sure if I understood your question, but if you want less data points within the same interval, then just use interp1. Here is one example:
close all
x = linspace(0, 10, 100); % 100 points between 0 and 10
y = sin(x * 2);
plot(x,y)
hold on
% 2 times smaller in size
xi = linspace (0,10,50); % 50 points between 0 and 10
yi = interp1(x, y, xi, 'linear');
plot(xi,yi,'r')
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!