Borrar filtros
Borrar filtros

How do I switch x and y axes?

8 visualizaciones (últimos 30 días)
Rita Owens
Rita Owens el 24 de En. de 2014
Comentada: Iain el 24 de En. de 2014
My code reads raw data from a file (that ends with .raw) and assigns arrays from the raw data such as data = raw (1:512, 1:128) but when I display this data with the statement as follows: imshow(data, 'Parent', handles.ax), the x-axis and y-axis data were displayed in reverse. How can I switch those x-axis and y-axis data? It s probably very simple but can't seem to find a good example in this newsgroup!

Respuestas (1)

Iain
Iain el 24 de En. de 2014
Editada: Iain el 24 de En. de 2014
I'm not sure what your exact issue is.
The right combination of functions "view", flipud, fliplr, and transpose: data' should be able to handle whichever flipping you'd like.
  2 comentarios
Rita Owens
Rita Owens el 24 de En. de 2014
I don't want to rotate or move the image around since when I attempt to zoom it, it won't work if it is rotated around. Just switch x and y axis data.
Iain
Iain el 24 de En. de 2014
Then simply transpose the data before plotting it?
data = raw(1:512,1:128);
data = data' ;

Iniciar sesión para comentar.

Categorías

Más información sobre Visual Exploration en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by