How do I switch x and y axes?
조회 수: 30 (최근 30일)
이전 댓글 표시
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!
댓글 수: 0
답변 (1개)
Iain
2014년 1월 24일
편집: Iain
2014년 1월 24일
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
Iain
2014년 1월 24일
Then simply transpose the data before plotting it?
data = raw(1:512,1:128);
data = data' ;
참고 항목
카테고리
Help Center 및 File Exchange에서 Creating, Deleting, and Querying Graphics Objects에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!