expand length of matrix to fixed value
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Morten Jørgensen
am 24 Jan. 2020
Beantwortet: Adam
am 24 Jan. 2020
I have problem expand a matrix
t is a 108x1 double, it contains a time vector 108 values in seconds.
How can I extend this matrix, so in contains 200 values with min(t) to max(t)?
the goal is to have t = to a 200x1 double
0 Kommentare
Akzeptierte Antwort
Adam
am 24 Jan. 2020
t = interp1( 1:108, t, linspace(1, 108, 200 ) );
would be one way to do it.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Interpolation 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!