Filter löschen
Filter löschen

Creating matrix from other matrix columns with loop?

1 Ansicht (letzte 30 Tage)
jack star
jack star am 23 Apr. 2016
Kommentiert: jack star am 23 Apr. 2016
Hi all. I have data matrixes x(15x16) and y(15x16). And I want to create new matrix z(15x16) by taking some columns of x and y. For example, 3-4-5-10-12-14-16th columns will be taken from x and others from y. Is it possible with loop?

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 23 Apr. 2016
Bearbeitet: Azzi Abdelmalek am 23 Apr. 2016
You don't need a loop
out=y
idx=[3 4 5 10 12 14 16]
out(:,idx)=x
  3 Kommentare
Azzi Abdelmalek
Azzi Abdelmalek am 23 Apr. 2016
Yes, there is a mistake in the last line
y=zeros(15,16);
x=randn(15,16);
out=y
idx=[3 4 5 10 12 14 16]
out(:,idx)=x(:,idx)

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements 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!

Translated by