how to merge the data in a table into one column

4 Ansichten (letzte 30 Tage)
sunitha
sunitha am 19 Feb. 2021
Kommentiert: Rik am 19 Feb. 2021
I have a 4*3 table . Now i want to delete last row of the table and combine to a single column of a table .After deleting the last row of a table, the second column should come to the 4th position of a first column in a table. simiarly third column.

Antworten (1)

KSSV
KSSV am 19 Feb. 2021
A = rand(4,3) ;
A(end,:) = [] ; % delete last row
A = A(:)
  2 Kommentare
Rik
Rik am 19 Feb. 2021
If an answer solves your issue, please consider marking it as accepted answer. That is true for all your questions.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Tables 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