array division

1 次查看(过去 30 天)
kush
kush 2012-3-24
how to divide a 1D array in 4 equal parts

采纳的回答

Wayne King
Wayne King 2012-3-24
If you have the Signal Processing Toolbox, you can use buffer()
x = randn(16,1);
y = buffer(x,4);
Otherwise, you can use reshape()
x = randn(16,1);
y = reshape(x,4,4);

更多回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by