I want to generate arbitrary matrix of indeces, e.g.:
1 2 3 4
2 3 4 5
3 4 5 6
4 5 6 7
5 6 7 8
6 7 8 9
One can observe a series in it. I solved the problem as follows:
% --- Inputs
x = 1:9;
window = 4;
% --- creating the matrix
mm = length(x);
nb_rws = mm - window + 1;
y = ones(nb_rws,window);
for i = 1 : nb_rws
y(i,:) = x(i : i + window -1);
end
y
Is there a solution to avoid the for loop? Thanks..

 Akzeptierte Antwort

madhan ravi
madhan ravi am 19 Dez. 2018
Bearbeitet: madhan ravi am 19 Dez. 2018

0 Stimmen

y=hankel((1:4),(4:9))'
Gives:
y =
1 2 3 4
2 3 4 5
3 4 5 6
4 5 6 7
5 6 7 8
6 7 8 9

Weitere Antworten (1)

Stephen23
Stephen23 am 19 Dez. 2018

0 Stimmen

Simpler:
>> hankel(1:6,6:9)
ans =
1 2 3 4
2 3 4 5
3 4 5 6
4 5 6 7
5 6 7 8
6 7 8 9

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Hilfe-Center und File Exchange

Produkte

Version

R2015b

Gefragt:

am 19 Dez. 2018

Beantwortet:

am 19 Dez. 2018

Community Treasure Hunt

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

Start Hunting!

Translated by