How can I add query points between two adjacent points of sampled data?
조회 수: 2 (최근 30일)
이전 댓글 표시
채택된 답변
Voss
2024년 2월 24일
x = [1;3;4;6;10]
n = 4; % number of points to insert in each interval
N = numel(x);
q = linspace(1,N,(n+1)*(N-1)+1);
Xq = interp1(1:N,x,q).'
댓글 수: 3
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!