How to bring signals of uneven sizes to the same size?

2 Ansichten (letzte 30 Tage)
JAI
JAI am 21 Apr. 2013
I have 3 signals, size(x)=15001 size(y)=7500 size(z)=3751
and how to bring the sizes of all these three signals to 15000?

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 21 Apr. 2013
x(end)=[];
y(end+1:15000)=0;
z(end+1:15000)=0;

Weitere Antworten (1)

Walter Roberson
Walter Roberson am 21 Apr. 2013
newx = interp1(linspace(0,1,length(x)), x, linspace(0,1,15000));
newy = interp1(linspace(0,1,length(y)), y, linspace(0,1,15000));
newz = interp1(linspace(0,1,length(z)), z, linspace(0,1,15000));

Kategorien

Mehr zu Resizing and Reshaping Matrices finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by