From: Tobias on 25 May 2010 08:38 Hi, has anybody an idea if it is possible to export a whole data series from a diagram. It is possible to show/export the data from single points by using the data cursor but I have not found a tool for a whole series. Thanks
From: Wayne King on 25 May 2010 09:51 "Tobias " <tobias.aigner(a)elkraft.ntnu.no> wrote in message <htggbc$q93$1(a)fred.mathworks.com>... > Hi, > has anybody an idea if it is possible to export a whole data series from a diagram. It is possible to show/export the data from single points by using the data cursor but I have not found a tool for a whole series. > > Thanks Hi Tobias, one way: plot(randn(100,1)); % click on edit plot, then click on the plot of the data x = get(gco,'XData'); y = get(gco,'YData'); Wayne
From: Walter Roberson on 25 May 2010 10:17 Tobias wrote: > has anybody an idea if it is possible to export a whole data series from > a diagram. It is possible to show/export the data from single points by > using the data cursor but I have not found a tool for a whole series. get() the XData and YData from the plot object. h = plot(X,Y,'r') xd = get(h,'XData'); yd = get(h,'YData');
From: Tobias on 25 May 2010 10:35 "Tobias " <tobias.aigner(a)elkraft.ntnu.no> wrote in message <htggbc$q93$1(a)fred.mathworks.com>... > Hi, > has anybody an idea if it is possible to export a whole data series from a diagram. It is possible to show/export the data from single points by using the data cursor but I have not found a tool for a whole series. > > Thanks thanks to both of you!
|
Pages: 1 Prev: How to create a message error Next: Java Heap Overflow ~ Need more Java.opts |