How can I add query points between two adjacent points of sampled data?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen

I have a representative subset of sample points as shown in column A (x), and intend to add query points (evenly) in interval of each two adjacent sample points of column A to make it as shown in column B (Xq).
0 Kommentare
Akzeptierte Antwort
Voss
am 24 Feb. 2024
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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!