Replace values in collumns

1 visualización (últimos 30 días)
Ancalagon8
Ancalagon8 el 4 de Nov. de 2019
Editada: Ancalagon8 el 6 de En. de 2025
Hi everyone. I am having an issue while processing some data.The problem is that a from a random time point from y2 go to the last collumn. Any ideas how to fix this in order to finally plot each colllumn seperate?
Thanks in advance!

Respuestas (1)

Bob Thompson
Bob Thompson el 4 de Nov. de 2019
You can just index your matrix to reorder it, assuming all of the columns are the same type of data (i.e. all of column 6 is z2, and all of column 7 is rain).
data = [data(:,1:5),data(:,8),data(:,6:7)];

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by