필터 지우기
필터 지우기

How to exract data from a figure and insert x and y values into a .mat file ?

조회 수: 2 (최근 30일)
Hello everyone, i have a discrete plot figure , which shows the generated packet size over time , i want to see the x and y values in .mat file i use that
x = get(gco,'xdata')
y = get(gco,'ydata')
now i have the x and y values(200 per each), but i wanna have a .mat file 200x2 that shows x and and its corresponding y in the same row, Can anyone help please? Thank you so much in advance!

채택된 답변

emehmetcik
emehmetcik 2015년 2월 18일
z = [x(:), y(:)];
save('MatFileName', 'z')

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Printing and Saving에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by