Azzera filtri
Azzera filtri

fastest way to divide a matrix columns into two matrices ?

1 visualizzazione (ultimi 30 giorni)
Hi All
I have an m*n matrix
I want to take out the fifth column (all the m rows) to one matrix , and alll of the other collumns , to another , how to do that ?

Risposta accettata

Azzi Abdelmalek
Azzi Abdelmalek il 20 Mar 2015
Modificato: Azzi Abdelmalek il 20 Mar 2015
%If A is your matrix
A=randi(10,5,8) % example
c5=A(:,5) % the fifth column
B=A(:,[1:4 6:m]) % remaining matrix

Più risposte (0)

Categorie

Scopri di più su 3-D Scene Control in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by